2020-08-04 16:22:31 +02:00
|
|
|
{
|
2023-01-10 21:23:32 +01:00
|
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
2020-08-04 16:22:31 +02:00
|
|
|
"compilerOptions": {
|
2022-04-06 23:52:50 +02:00
|
|
|
"target": "ESNext",
|
2022-08-26 20:19:31 +02:00
|
|
|
"module": "ESNext",
|
2023-04-02 22:10:52 +02:00
|
|
|
"lib": ["dom", "dom.iterable", "ESNext"],
|
2022-08-26 20:19:31 +02:00
|
|
|
"allowJs": true,
|
2023-12-26 22:24:32 +01:00
|
|
|
"baseUrl": ".",
|
2023-04-02 22:10:52 +02:00
|
|
|
"types": ["cypress"],
|
2022-08-26 20:19:31 +02:00
|
|
|
"noEmit": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"jsx": "preserve",
|
2023-01-10 21:23:32 +01:00
|
|
|
"incremental": true,
|
2023-04-02 21:52:34 +02:00
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
"verbatimModuleSyntax": false,
|
2024-01-30 01:45:09 +01:00
|
|
|
"isolatedModules": true,
|
2022-08-26 20:19:31 +02:00
|
|
|
},
|
2023-04-02 22:10:52 +02:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
2024-01-30 01:45:09 +01:00
|
|
|
"exclude": ["node_modules"],
|
2020-08-04 16:22:31 +02:00
|
|
|
}
|