tsconfig.base.json 937 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "commonjs",
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "importHelpers": true,
  8. "sourceMap": true,
  9. "removeComments": false,
  10. "noEmit": true,
  11. "isolatedModules": true,
  12. "lib": ["dom", "dom.iterable", "esnext"],
  13. /* Strict Type-Checking Options */
  14. // "strict": true,
  15. "strictNullChecks": true,
  16. "noImplicitAny": false,
  17. /* Additional Checks */
  18. "noUnusedLocals": false,
  19. "noUnusedParameters": false,
  20. /* Module Resolution Options */
  21. "moduleResolution": "node",
  22. "typeRoots": [
  23. "./node_modules/@types"
  24. ],
  25. "allowSyntheticDefaultImports": true,
  26. "esModuleInterop": true,
  27. /* Misc */
  28. "preserveConstEnums": true,
  29. "forceConsistentCasingInFileNames": true,
  30. "resolveJsonModule": true,
  31. /* Experimental Options */
  32. "experimentalDecorators": true,
  33. "emitDecoratorMetadata": true
  34. }
  35. }