Files
huly-platform/tsconfig.json
T
Kristina Fefelova 148314513d Init with bun
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2024-11-22 17:57:32 +04:00

31 lines
712 B
JSON

{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"types": [
"bun-types" // add Bun global
],
// "exclude": ["node_modules", "dist"]
}
}