Add shareable config TS files and tsconfig.json

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-21 15:18:20 +04:00
parent 6d75d64ba9
commit bcc9de804e
6 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"complierOptions": {
"lib": ["ES2023"],
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "nodenext",
"moduleDetection": "force",
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["./*.ts"]
}