tsconfig.json 339 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "commonjs",
  5. "outDir": "dist/",
  6. "sourceMap": false,
  7. "emitDecoratorMetadata": true,
  8. "experimentalDecorators": true,
  9. "removeComments": true,
  10. "noImplicitAny": true
  11. },
  12. "exclude": [
  13. "node_modules",
  14. "typings/browser",
  15. "typings/browser.d.ts"
  16. ]
  17. }