tsconfig.json 879 B

1234567891011121314151617181920212223242526
  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", "esnext.asynciterable", "es2016" ],
  13. "outDir": "build/node_modules",
  14. "baseUrl": "src",
  15. "paths": {
  16. "mol-task": ["./mol-task", "./mol-task/index.ts"],
  17. "mol-comp": ["./mol-comp", "./mol-comp/index.ts"],
  18. "mol-util": ["./mol-util", "./mol-util/index.ts"],
  19. "mol-data": ["./mol-data", "./mol-data/index.ts"],
  20. "mol-math": ["./mol-math"],
  21. "mol-io": ["./mol-io"],
  22. "mol-model": ["./mol-model"]
  23. }
  24. },
  25. "include": [ "**/*" ]
  26. }