tsconfig.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "target": "es5",
  5. "alwaysStrict": true,
  6. "noImplicitAny": true,
  7. "noImplicitThis": true,
  8. "sourceMap": false,
  9. "noUnusedLocals": true,
  10. "strictNullChecks": true,
  11. "strictFunctionTypes": true,
  12. // "downlevelIteration": true,
  13. "jsx": "react",
  14. "lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
  15. "outDir": "build",
  16. "baseUrl": "src",
  17. "paths": {
  18. "mol-app": ["./mol-app"],
  19. "mol-data": ["./mol-data", "./mol-data/index.ts"],
  20. "mol-geo": ["./mol-geo"],
  21. "mol-gl": ["./mol-gl"],
  22. "mol-io": ["./mol-io"],
  23. "mol-math": ["./mol-math"],
  24. "mol-model": ["./mol-model"],
  25. "mol-model-props": ["./mol-model-props", "./mol-model-props/index.ts"],
  26. "mol-model-parsers": ["./mol-model-parsers"],
  27. "mol-ql": ["./mol-ql"],
  28. "mol-repr": ["./mol-repr"],
  29. "mol-script": ["./mol-script"],
  30. "mol-state": ["./mol-state", "./mol-state/index.ts"],
  31. "mol-plugin": ["./mol-plugin", "./mol-plugin/index.ts"],
  32. "mol-task": ["./mol-task", "./mol-task/index.ts"],
  33. "mol-theme": ["./mol-theme"],
  34. "mol-util": ["./mol-util", "./mol-util/index.ts"],
  35. "mol-canvas3d": ["./mol-canvas3d"]
  36. }
  37. },
  38. "include": [ "src/**/*" ],
  39. }