tsconfig.json 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "target": "ES2015",
  4. "baseUrl": "./",
  5. "outDir": "lib",
  6. "sourceMap": true,
  7. "allowJs": true,
  8. "module": "es6",
  9. "lib": ["esnext", "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. "forceConsistentCasingInFileNames": true,
  20. "allowSyntheticDefaultImports": true,
  21. "experimentalDecorators": true,
  22. "noImplicitReturns": true,
  23. "noImplicitThis": false,
  24. "esModuleInterop": true,
  25. "skipLibCheck": true,
  26. "declaration": true,
  27. "strictNullChecks": false,
  28. "strict": true
  29. },
  30. "include": ["**/*.tsx", "**/*.ts"],
  31. "exclude": ["node_modules", "packages/rollup-plugin-semi-svg"]
  32. }