2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/tsconfig.json

22 lines
585 B
JSON
Raw Permalink Normal View History

2021-10-24 05:19:39 +02:00
{
2023-01-11 17:39:09 +01:00
"extends": "@tsconfig/strictest/tsconfig.json",
2021-10-24 05:19:39 +02:00
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": true,
"jsx": "preserve",
"sourceMap": true,
"removeComments": true,
"noEmit": true,
"types": ["cypress"],
2023-01-11 17:39:09 +01:00
"lib": ["dom", "dom.iterable", "ESNext"],
2021-10-24 05:19:39 +02:00
"resolveJsonModule": true,
2021-12-28 16:06:58 +01:00
"isolatedModules": true,
2023-01-11 17:39:09 +01:00
"incremental": true,
"exactOptionalPropertyTypes": false
2021-10-24 05:19:39 +02:00
},
"exclude": ["dist", ".next", "out", "next.config.js"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
2021-10-24 05:19:39 +02:00
}