syntax-lab/tsconfig.json
2026-04-25 01:10:49 +02:00

33 lines
782 B
JSON

{
"compilerOptions": {
"target": "es2023",
"module": "esnext",
"lib": ["ES2023", "DOM"],
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"skipLibCheck": true,
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"paths": {
"source-region": [ "./libs/source-region/src/index.ts" ]
},
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
// "noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"erasableSyntaxOnly": false
},
"include": ["src", "libs/source-region/src"]
}