| 123456789101112131415161718192021222324252627282930313233 |
- {
- "compilerOptions": {
- "target": "ES2015",
- "baseUrl": "./",
- "outDir": "lib",
- "sourceMap": true,
- "allowJs": true,
- "module": "es6",
- "lib": ["es7", "dom"],
- "moduleResolution": "node",
- "noImplicitAny": false,
- "jsx": "react",
- "paths": {
- "@douyinfe/semi-foundation/*": ["../semi-foundation/*"],
- "@douyinfe/semi-ui/*": ["../semi-ui/*"],
- "@douyinfe/semi-theme-default/*": ["../semi-theme-default/*"],
- "@douyinfe/semi-icons": ["../semi-icons/src"]
- },
- "suppressImplicitAnyIndexErrors": true,
- "forceConsistentCasingInFileNames": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "noImplicitReturns": true,
- "noImplicitThis": false,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "declaration": true,
- "strictNullChecks": false,
- "strict": true
- },
- "include": ["**/*.tsx", "**/*.ts"],
- "exclude": ["node_modules", "packages/rollup-plugin-semi-svg"]
- }
|