tsconfig.json 606 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "declaration": true,
  5. "removeComments": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "allowSyntheticDefaultImports": true,
  9. "target": "es2017",
  10. "sourceMap": true,
  11. "outDir": "./dist",
  12. "baseUrl": "./",
  13. "incremental": true,
  14. "strictNullChecks": false,
  15. "noImplicitAny": false,
  16. "strictBindCallApply": false,
  17. "forceConsistentCasingInFileNames": false,
  18. "noFallthroughCasesInSwitch": false,
  19. "resolveJsonModule": true,
  20. "esModuleInterop": true,
  21. "skipLibCheck": true
  22. }
  23. }