/[sudobot]/branches/9.x-dev/blazebuild/tsconfig.json
ViewVC logotype

Annotation of /branches/9.x-dev/blazebuild/tsconfig.json

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/json
File size: 748 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 {
2     "compilerOptions": {
3     // Enable latest features
4     "lib": ["ESNext", "DOM"],
5     "target": "ESNext",
6     "module": "ESNext",
7     "moduleDetection": "force",
8     "moduleResolution": "Node",
9    
10     // Bundler mode
11     "allowImportingTsExtensions": false,
12     "verbatimModuleSyntax": true,
13     "noEmit": true,
14    
15     // Best practices
16     "strict": true,
17     "skipLibCheck": true,
18     "noFallthroughCasesInSwitch": true,
19    
20     // Some stricter flags (disabled by default)
21     "noUnusedLocals": false,
22     "noUnusedParameters": false,
23     "noPropertyAccessFromIndexSignature": false,
24     "noImplicitOverride": true,
25     "noImplicitThis": true,
26     "esModuleInterop": true,
27     "experimentalDecorators": true,
28     "emitDecoratorMetadata": true
29     }
30     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26