1
0
Fork 0
mirror of https://github.com/imjasonh/droneski synced 2026-07-07 00:33:14 +00:00
droneski/tsconfig.json
Jason Hall fe7a8bf438 initial commit
Signed-off-by: Jason Hall <imjasonh@gmail.com>
2026-02-22 11:29:27 -05:00

26 lines
637 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}