Mercurial
comparison third_party/bun/tsconfig.json @ 190:a2725419f988 hg-web
Updated so that bun builds will with already existing js files.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sat, 24 Jan 2026 21:06:42 -0800 |
| parents | de54585a40f1 |
| children |
comparison
equal
deleted
inserted
replaced
| 188:32ce881452fa | 190:a2725419f988 |
|---|---|
| 1 { | 1 { |
| 2 "compilerOptions": { | 2 "compilerOptions": { |
| 3 // Environment setup & latest features | 3 "baseUrl": ".", |
| 4 "lib": ["ESNext"], | 4 "paths": { |
| 5 "target": "ESNext", | 5 "*": ["*"] |
| 6 "module": "Preserve", | 6 } |
| 7 "moduleDetection": "force", | |
| 8 "jsx": "react-jsx", | |
| 9 "allowJs": true, | |
| 10 | |
| 11 // Bundler mode | |
| 12 "moduleResolution": "bundler", | |
| 13 "allowImportingTsExtensions": true, | |
| 14 "verbatimModuleSyntax": true, | |
| 15 "noEmit": true, | |
| 16 | |
| 17 // Best practices | |
| 18 "strict": true, | |
| 19 "skipLibCheck": true, | |
| 20 "noFallthroughCasesInSwitch": true, | |
| 21 "noUncheckedIndexedAccess": true, | |
| 22 "noImplicitOverride": true, | |
| 23 | |
| 24 // Some stricter flags (disabled by default) | |
| 25 "noUnusedLocals": false, | |
| 26 "noUnusedParameters": false, | |
| 27 "noPropertyAccessFromIndexSignature": false | |
| 28 } | 7 } |
| 29 } | 8 } |