2021-04-18 01:56:23 +02:00
|
|
|
{
|
2023-01-10 23:56:46 +01:00
|
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
2021-04-18 01:56:23 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2024-01-23 22:01:50 +01:00
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
2021-04-18 01:56:23 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"baseUrl": ".",
|
2023-04-02 23:16:51 +02:00
|
|
|
"paths": {
|
2024-01-23 22:01:50 +01:00
|
|
|
"@/*": ["./*"],
|
2023-04-02 23:16:51 +02:00
|
|
|
},
|
2024-01-23 22:01:50 +01:00
|
|
|
"types": ["@total-typescript/ts-reset", "cypress"],
|
2023-04-02 23:16:51 +02:00
|
|
|
"noEmit": true,
|
2021-04-18 01:56:23 +02:00
|
|
|
"resolveJsonModule": true,
|
2023-04-02 23:16:51 +02:00
|
|
|
"jsx": "preserve",
|
2023-01-10 23:56:46 +01:00
|
|
|
"incremental": true,
|
2023-04-02 22:44:09 +02:00
|
|
|
"exactOptionalPropertyTypes": false,
|
2023-04-02 23:16:51 +02:00
|
|
|
"verbatimModuleSyntax": false,
|
2023-07-31 19:06:46 +02:00
|
|
|
"isolatedModules": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
2024-01-23 22:01:50 +01:00
|
|
|
"name": "next",
|
|
|
|
},
|
|
|
|
],
|
2021-04-18 01:56:23 +02:00
|
|
|
},
|
2023-07-31 19:06:46 +02:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
2024-01-23 22:01:50 +01:00
|
|
|
"exclude": ["node_modules", ".next"],
|
2021-04-18 01:56:23 +02:00
|
|
|
}
|