Tsconfig

loom-builderconfigjson
Path: loom-builder/tsconfig.jsonRelative: tsconfig.jsonSubproject: loom-builderCategory: configuration
Lines: 30Bytes: 713Imports: 0Exports: 0

Content Preview

  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. // Bundler mode
  11. "moduleResolution": "bundler",
  12. "allowImportingTsExtensions": true,
  13. "verbatimModuleSyntax": true,
  14. "noEmit": true,
  15. // Best practices
  16. "strict": true,
  17. "skipLibCheck": true,
  18. "noFallthroughCasesInSwitch": true,
  19. "noUncheckedIndexed