tsconfig.json 403 B

12345678910111213141516
  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. "baseUrl": "src"
  14. },
  15. "include": [ "**/*" ]
  16. }