tsconfig.json 578 B

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