tsconfig.json 336 B

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