tsconfig.json 436 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "commonjs",
  5. "moduleResolution": "node",
  6. "noUnusedLocals": true,
  7. "sourceMap": true,
  8. "declaration": true,
  9. "removeComments": false,
  10. "noImplicitAny": false,
  11. "outDir": "built/"
  12. },
  13. "exclude": [
  14. "built",
  15. "node_modules",
  16. "selenium",
  17. "testapp",
  18. "typings/browser",
  19. "typings/browser.d.ts"
  20. ],
  21. "filesGlob": [
  22. "**/*.ts"
  23. ]
  24. }