1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/tsconfig.json

30 lines
739 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",
2024-01-23 22:01:50 +01:00
"moduleResolution": "Bundler",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
2021-04-18 01:56:23 +02:00
"allowJs": true,
"baseUrl": ".",
2023-04-02 23:16:51 +02:00
"paths": {
2024-01-23 22:01:50 +01:00
"@/*": ["./*"],
2023-04-02 23:16:51 +02:00
},
2024-01-23 22:01:50 +01:00
"types": ["@total-typescript/ts-reset", "cypress"],
2023-04-02 23:16:51 +02:00
"noEmit": true,
2021-04-18 01:56:23 +02:00
"resolveJsonModule": true,
2023-04-02 23:16:51 +02:00
"jsx": "preserve",
2023-01-10 23:56:46 +01:00
"incremental": true,
2023-04-02 22:44:09 +02:00
"exactOptionalPropertyTypes": false,
2023-04-02 23:16:51 +02:00
"verbatimModuleSyntax": false,
"isolatedModules": true,
"plugins": [
{
2024-01-23 22:01:50 +01:00
"name": "next",
},
],
2021-04-18 01:56:23 +02:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
2024-01-23 22:01:50 +01:00
"exclude": ["node_modules", ".next"],
2021-04-18 01:56:23 +02:00
}