markdownlint-rule-relative-.../tsconfig.json

26 lines
628 B
JSON
Raw Normal View History

{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
2024-11-11 13:24:45 +01:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
"checkJs": true,
"allowJs": true,
"noEmit": true,
"rootDir": ".",
"baseUrl": ".",
"skipLibCheck": true,
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2024-04-06 20:14:59 +02:00
"forceConsistentCasingInFileNames": true
}
}