1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 22:45:53 +02:00
.profile/tsconfig.json

23 lines
605 B
JSON
Raw Normal View History

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",
"moduleResolution": "node",
"allowJs": true,
"jsx": "preserve",
"sourceMap": true,
"removeComments": true,
"noEmit": true,
"types": ["cypress"],
2021-04-18 01:56:23 +02:00
"baseUrl": ".",
2023-01-10 23:56:46 +01:00
"lib": ["dom", "dom.iterable", "ESNext"],
2021-04-18 01:56:23 +02:00
"resolveJsonModule": true,
2021-12-04 15:52:51 +01:00
"isolatedModules": true,
2023-01-10 23:56:46 +01:00
"incremental": true,
"exactOptionalPropertyTypes": false
2021-04-18 01:56:23 +02:00
},
"exclude": ["dist", ".next", "out", "next.config.js"],
2021-04-18 01:56:23 +02:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}