tsconfig.json 474 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "declaration": true,
  5. "noImplicitAny": false,
  6. "removeComments": true,
  7. "noLib": false,
  8. "skipLibCheck": true,
  9. "lib": ["es2017"],
  10. "allowSyntheticDefaultImports": true,
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "target": "es6",
  14. "strict": true,
  15. "strictPropertyInitialization": false,
  16. "sourceMap": true,
  17. "outDir": "./dist",
  18. "baseUrl": "./src"
  19. }
  20. }