2022-02-11 13:56:28 +00:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "preserve",
|
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"types": ["node", "jest"],
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"resolveJsonModule": true,
|
2022-02-14 13:35:50 +00:00
|
|
|
"isolatedModules": true,
|
|
|
|
"incremental": true
|
2022-02-11 13:56:28 +00:00
|
|
|
},
|
|
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts"],
|
2022-03-01 00:59:18 +00:00
|
|
|
"exclude": ["node_modules", "__generated__"]
|
2022-02-11 13:56:28 +00:00
|
|
|
}
|