tsconfig.json 719 B

123456789101112131415161718192021222324
  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-util": ["./mol-util", "./mol-util/index.ts"],
  17. "mol-data": ["./mol-data", "./mol-data/index.ts"],
  18. "mol-math": ["./mol-math"],
  19. "mol-io": ["./mol-io"],
  20. "mol-model": ["./mol-model"]
  21. }
  22. },
  23. "include": [ "**/*" ]
  24. }