2
2
mirror of https://github.com/Thream/website.git synced 2024-07-06 18:40:12 +02:00
website/tsconfig.json

25 lines
606 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",
2023-04-03 00:11:19 +02:00
"lib": ["dom", "dom.iterable", "ESNext"],
2023-09-18 22:21:59 +02:00
"module": "ESNext",
"moduleResolution": "Node",
2021-10-24 05:19:39 +02:00
"allowJs": true,
2023-04-03 00:11:19 +02:00
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
"types": ["cypress"],
2023-04-03 00:11:19 +02:00
"noEmit": true,
2021-10-24 05:19:39 +02:00
"resolveJsonModule": true,
2023-04-03 00:11:19 +02:00
"jsx": "preserve",
2023-01-11 17:39:09 +01:00
"incremental": true,
2023-04-03 00:11:19 +02:00
"exactOptionalPropertyTypes": false,
"verbatimModuleSyntax": false,
"isolatedModules": true
2021-10-24 05:19:39 +02:00
},
2023-04-03 00:11:19 +02:00
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2021-10-24 05:19:39 +02:00
}