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",
|
2023-04-02 23:16:51 +02:00
|
|
|
"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": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
},
|
|
|
|
"types": ["cypress"],
|
|
|
|
"noEmit": true,
|
2023-09-14 11:49:52 +02:00
|
|
|
"moduleResolution": "Bundler",
|
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": [
|
|
|
|
{
|
|
|
|
"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"],
|
2023-04-02 23:16:51 +02:00
|
|
|
"exclude": ["node_modules"]
|
2021-04-18 01:56:23 +02:00
|
|
|
}
|