tsconfig.json 903 B

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