30 lines
691 B
JSON
30 lines
691 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"module": "esnext",
|
|
"lib": ["ES2023", "DOM"],
|
|
"types": ["vite/client"],
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": ".",
|
|
"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"]
|
|
}
|