2021-03-09 20:33:12 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
"esnext"
|
|
|
|
|
],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2021-06-12 22:44:56 +02:00
|
|
|
"jsx": "preserve",
|
2022-02-24 21:33:17 +01:00
|
|
|
"incremental": true,
|
2021-06-12 22:44:56 +02:00
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@*": ["*"]
|
|
|
|
|
}
|
2021-03-09 20:33:12 +01:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
2022-10-21 15:57:53 +02:00
|
|
|
"node_modules"
|
2021-03-09 20:33:12 +01:00
|
|
|
]
|
|
|
|
|
}
|