tsconfig.json 316 B

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