mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-03 20:11:30 +01:00
30 lines
739 B
JSON
30 lines
739 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
},
|
|
"types": ["@total-typescript/ts-reset", "cypress"],
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"verbatimModuleSyntax": false,
|
|
"isolatedModules": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next",
|
|
},
|
|
],
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", ".next"],
|
|
}
|