34 lines
684 B
JSON
34 lines
684 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"allowJs": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"esModuleInterop": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"module": "es2020",
|
||
|
"lib": [
|
||
|
"es2020",
|
||
|
"dom"
|
||
|
],
|
||
|
"moduleResolution": "node",
|
||
|
"noEmit": true,
|
||
|
"strict": true,
|
||
|
"target": "es2020",
|
||
|
"resolveJsonModule": true, // Required for JSON files
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"e2e",
|
||
|
"**/*.json", // Don't try and check JSON files
|
||
|
"**/*.spec.ts"
|
||
|
],
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx"
|
||
|
]
|
||
|
}
|