Mercurial
comparison third_party/bun/tsconfig.json @ 12:de54585a40f1
Adding bun and node modules.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 02 Oct 2025 14:39:48 -0700 |
| parents | |
| children | a2725419f988 |
comparison
equal
deleted
inserted
replaced
| 11:f33d9ff8b6e8 | 12:de54585a40f1 |
|---|---|
| 1 { | |
| 2 "compilerOptions": { | |
| 3 // Environment setup & latest features | |
| 4 "lib": ["ESNext"], | |
| 5 "target": "ESNext", | |
| 6 "module": "Preserve", | |
| 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 } | |
| 29 } |