tsconfig.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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-app": ["./mol-app"],
  18. "mol-data": ["./mol-data", "./mol-data/index.ts"],
  19. "mol-geo": ["./mol-geo"],
  20. "mol-gl": ["./mol-gl"],
  21. "mol-io": ["./mol-io"],
  22. "mol-math": ["./mol-math"],
  23. "mol-model": ["./mol-model"],
  24. "mol-model-props": ["./mol-model-props", "./mol-model-props/index.ts"],
  25. "mol-ql": ["./mol-ql"],
  26. "mol-script": ["./mol-script"],
  27. "mol-task": ["./mol-task", "./mol-task/index.ts"],
  28. "mol-util": ["./mol-util", "./mol-util/index.ts"],
  29. "mol-view": ["./mol-view"]
  30. }
  31. },
  32. "include": [ "**/*" ],
  33. "files": [
  34. "./node_modules/@types/webgl2/index.d.ts"
  35. ],
  36. }