2022-12-13 04:45:38 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"outDir": "./build",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noEmit": true,
|
2023-08-22 00:53:19 +02:00
|
|
|
"jsx": "preserve",
|
2023-08-23 22:10:12 +02:00
|
|
|
"incremental": false,
|
2023-08-23 23:39:38 +02:00
|
|
|
"baseUrl": "./src",
|
2023-08-23 22:10:12 +02:00
|
|
|
"paths": {
|
2023-08-23 23:39:38 +02:00
|
|
|
"assets/*": ["./assets/*"],
|
|
|
|
"components/*": ["./components/*"],
|
|
|
|
"lib/*": ["./lib/*"],
|
|
|
|
"pages/*": ["./pages/*"],
|
|
|
|
"queries/*": ["./queries/*"],
|
|
|
|
"store/*": ["./store/*"],
|
|
|
|
"styles/*": ["./styles/*"]
|
2023-08-23 22:10:12 +02:00
|
|
|
}
|
2022-12-13 04:45:38 +01:00
|
|
|
},
|
2023-08-23 19:25:57 +02:00
|
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts"],
|
2022-12-13 04:45:38 +01:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|