tsconfig.json 440 B

1234567891011121314151617
  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. "strictFunctionTypes": true,
  11. //"downlevelIteration": true,
  12. "lib": [ "es6", "dom" ],
  13. "outDir": "build/js/src",
  14. "baseUrl": "src"
  15. },
  16. "include": [ "**/*" ]
  17. }