tsconfig.json 385 B

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