tsconfig.json 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "target": "ES2015",
  4. "baseUrl": "./",
  5. "outDir": "lib",
  6. "sourceMap": true,
  7. "allowJs": true,
  8. "module": "es6",
  9. "lib": ["es7", "dom"],
  10. "moduleResolution": "node",
  11. "noImplicitAny": false,
  12. "jsx": "react",
  13. "paths": {
  14. "@douyinfe/semi-foundation/*": ["../semi-foundation/*"],
  15. "@douyinfe/semi-ui/*": ["../semi-ui/*"],
  16. "@douyinfe/semi-theme-default/*": ["../semi-theme-default/*"],
  17. "@douyinfe/semi-icons": ["../semi-icons/src"]
  18. },
  19. "suppressImplicitAnyIndexErrors": true,
  20. "forceConsistentCasingInFileNames": true,
  21. "allowSyntheticDefaultImports": true,
  22. "experimentalDecorators": true,
  23. "noImplicitReturns": true,
  24. "noImplicitThis": false,
  25. "esModuleInterop": true,
  26. "skipLibCheck": true,
  27. "declaration": true,
  28. "strictNullChecks": false,
  29. "strict": true
  30. },
  31. "include": ["**/*.tsx", "**/*.ts"],
  32. "exclude": ["node_modules", "packages/rollup-plugin-semi-svg"]
  33. }