tsconfig.json 591 B

12345678910111213141516171819202122
  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/node_modules",
  14. "baseUrl": "src",
  15. "paths": {
  16. "mol-base": ["./mol-base"],
  17. "mol-data": ["./mol-data"],
  18. "mol-io": ["./mol-io"]
  19. }
  20. },
  21. "include": [ "**/*" ]
  22. }