mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
25 lines
606 B
JSON
25 lines
606 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "ESNext"],
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"types": ["cypress"],
|
|
"noEmit": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"verbatimModuleSyntax": false,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|