2022-02-12 23:07:11 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-18 16:17:05 +01:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2022-02-12 23:07:11 +01:00
|
|
|
"allowJs": true,
|
2022-03-18 16:17:05 +01:00
|
|
|
"checkJs": true,
|
|
|
|
"baseUrl": ".",
|
2022-02-12 23:07:11 +01:00
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
2022-03-18 16:17:05 +01:00
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"isolatedModules": true,
|
2022-02-12 23:07:11 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
2022-03-18 16:17:05 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2022-04-12 16:47:21 +02:00
|
|
|
"forceConsistentCasingInFileNames": true
|
2022-02-12 23:07:11 +01:00
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
2022-03-18 16:17:05 +01:00
|
|
|
"exclude": ["dist", ".next", "out", "next.config.js"]
|
2022-02-12 23:07:11 +01:00
|
|
|
}
|