2021-11-19 10:15:13 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2021-11-29 15:19:07 +01:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2021-11-19 10:15:13 +01:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
2021-12-29 10:22:26 +01:00
|
|
|
"strict": true,
|
2021-11-19 10:15:13 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"incremental": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-11-29 15:19:07 +01:00
|
|
|
"jsx": "preserve",
|
2021-12-29 10:22:26 +01:00
|
|
|
"baseUrl": ".",
|
2021-11-29 15:19:07 +01:00
|
|
|
"composite": true
|
2021-11-19 10:15:13 +01:00
|
|
|
},
|
2022-02-17 16:52:42 +01:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
"pages/404.js",
|
|
|
|
"pages/_error.js"
|
|
|
|
],
|
2022-02-24 17:44:23 +01:00
|
|
|
"exclude": ["node_modules"]
|
2021-11-19 10:15:13 +01:00
|
|
|
}
|