18 lines
473 B
JSON
18 lines
473 B
JSON
|
{
|
||
|
"extends": "../../tsconfig.base.json",
|
||
|
"compilerOptions": {
|
||
|
"jsx": "preserve",
|
||
|
"allowJs": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"types": ["node", "jest"],
|
||
|
"strict": false,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noEmit": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true
|
||
|
},
|
||
|
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|