2020-10-16 19:37:34 +02:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "preserve",
|
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"types": ["node", "jest"],
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"resolveJsonModule": true,
|
2021-01-10 22:03:07 +01:00
|
|
|
"isolatedModules": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true
|
2020-10-16 19:37:34 +02:00
|
|
|
},
|
2020-10-17 15:55:18 +02:00
|
|
|
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
2020-10-16 19:37:34 +02:00
|
|
|
}
|