2020-05-07 08:03:30 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-06-30 11:28:49 +02:00
|
|
|
"target": "esnext",
|
2021-10-27 12:27:14 +02:00
|
|
|
"module": "ES2020",
|
|
|
|
"lib": ["dom", "ES2020"],
|
2020-05-07 08:03:30 +02:00
|
|
|
"resolveJsonModule": true,
|
2021-10-27 12:27:14 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "preserve",
|
2020-06-30 11:28:49 +02:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": true,
|
2021-10-13 18:48:59 +02:00
|
|
|
"paths": {
|
|
|
|
"@shared/*": ["./src/components/@shared/*"],
|
2021-10-18 20:44:33 +02:00
|
|
|
"@hooks/*": ["./src/@hooks/*"],
|
|
|
|
"@context/*": ["./src/@context/*"],
|
|
|
|
"@images/*": ["./src/@images/*"],
|
2021-10-27 12:27:14 +02:00
|
|
|
"@utils/*": ["./src/@utils/*"],
|
|
|
|
"@content/*": ["./@content/*"]
|
|
|
|
},
|
|
|
|
"baseUrl": ".",
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"incremental": true
|
2020-05-07 08:03:30 +02:00
|
|
|
},
|
2021-10-27 12:27:14 +02:00
|
|
|
"exclude": ["node_modules", ".next", "*.js"],
|
2021-10-27 19:33:57 +02:00
|
|
|
"include": ["./src/**/*", "./tests/**/*", "./next-env.d.ts", "./content/**/*"]
|
2020-05-07 08:03:30 +02:00
|
|
|
}
|