2021-04-18 01:56:23 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
2022-07-28 22:51:12 +02:00
|
|
|
"types": ["cypress"],
|
2021-04-18 01:56:23 +02:00
|
|
|
"baseUrl": ".",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true,
|
2021-12-04 15:52:51 +01:00
|
|
|
"isolatedModules": true,
|
|
|
|
"incremental": true
|
2021-04-18 01:56:23 +02:00
|
|
|
},
|
2022-07-28 22:51:12 +02:00
|
|
|
"exclude": ["dist", ".next", "out", "next.config.js"],
|
2021-04-18 01:56:23 +02:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
|
|
|
}
|