tsconfig.json 567 B

12345678910111213141516171819202122
  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. "skipLibCheck": true,
  15. "strict": false,
  16. "strictNullChecks": false,
  17. "noImplicitAny": false,
  18. "strictBindCallApply": false,
  19. "forceConsistentCasingInFileNames": false,
  20. "noFallthroughCasesInSwitch": true,
  21. }
  22. }