tsconfig.json 913 B

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