tsconfig.base.json 392 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "noImplicitAny": true,
  6. "preserveConstEnums": true,
  7. "inlineSources": true,
  8. "inlineSourceMap": true,
  9. "esModuleInterop": true,
  10. "lib": ["DOM", "ES2015", "ScriptHost"],
  11. "declaration": true,
  12. "composite": true,
  13. "moduleResolution": "node",
  14. "skipLibCheck": true,
  15. "strict": true
  16. }
  17. }