tsconfig.json 327 B

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