2019-10-17 00:13:54 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"lib": ["dom", "es2017"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true
|
|
|
|
},
|
2019-10-21 11:52:51 +02:00
|
|
|
"exclude": ["node_modules", ".next"],
|
2019-10-18 13:10:43 +02:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.mdx"]
|
2019-10-17 00:13:54 +02:00
|
|
|
}
|