Initial commit

This commit is contained in:
Yura Dupyn 2026-04-22 18:55:21 +02:00
commit 38ff06ea45
16 changed files with 1107 additions and 0 deletions

30
tsconfig.json Normal file
View file

@ -0,0 +1,30 @@
{
"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"]
}