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

23 lines
605 B
JSON

{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": true,
"jsx": "preserve",
"sourceMap": true,
"removeComments": true,
"noEmit": true,
"types": ["cypress"],
"baseUrl": ".",
"lib": ["dom", "dom.iterable", "ESNext"],
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"exactOptionalPropertyTypes": false
},
"exclude": ["dist", ".next", "out", "next.config.js"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}