暂无描述

tsconfig.json 965B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "packages",
  4. "lib": ["es6", "es7", "dom", "scripthost", "webworker"],
  5. "jsx": "react",
  6. "target": "es5",
  7. "module": "commonjs",
  8. "moduleResolution": "node",
  9. "sourceMap": true,
  10. "allowJs": false,
  11. "outDir": "dist",
  12. "experimentalDecorators": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "removeComments": true,
  15. "noImplicitReturns": true,
  16. "noImplicitThis": true,
  17. "noImplicitAny": true,
  18. "allowUnusedLabels": true,
  19. "strictNullChecks": true,
  20. "suppressImplicitAnyIndexErrors": true,
  21. "noUnusedLocals": true,
  22. "allowSyntheticDefaultImports": true,
  23. "skipLibCheck": true,
  24. "paths": {
  25. "lego-form-core": ["lego-form-core/src/"]
  26. }
  27. },
  28. "include": ["**/*.js", "**/*.ts", "**/*.tsx"],
  29. "exclude": [
  30. "assets",
  31. "build",
  32. "dist",
  33. "indep-pkgs",
  34. "node_modules",
  35. "scripts",
  36. "ssr",
  37. "stories",
  38. "__test__",
  39. "test"
  40. ]
  41. }