tsconfig.json 381 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "alwaysStrict": true,
  5. "noImplicitAny": true,
  6. "noImplicitThis": true,
  7. "sourceMap": false,
  8. "noUnusedLocals": true,
  9. "strictNullChecks": true,
  10. //"downlevelIteration": true,
  11. "lib": [ "es6", "dom" ],
  12. "outDir": "build/js/src"
  13. },
  14. "include": [ "src/**/*" ]
  15. }