-
Notifications
You must be signed in to change notification settings - Fork 715
/
tsconfig.json
32 lines (32 loc) Β· 1.12 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compilerOptions": {
"target": "ES2015",
"baseUrl": "./",
"outDir": "dist",
"sourceMap": true,
"allowJs": true,
"module": "es6",
"lib": ["es7", "dom"],
"moduleResolution": "node",
"noImplicitAny": true,
"jsx": "react",
"paths": {
"@douyinfe/semi-ui/*": ["./packages/semi-ui/*"],
"@douyinfe/semi-foundation/*": ["./packages/semi-foundation/*"],
"@douyinfe/semi-theme-default/*": ["./packages/semi-theme-default/*"],
"@douyinfe/semi-icons": ["./packages/semi-icons/src/index"],
"@douyinfe/semi-illustrations": ["./packages/semi-illustrations/src/index"],
},
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noImplicitThis": false,
"strictNullChecks": false,
"esModuleInterop": true,
"skipLibCheck": true,
},
"include": ["packages/**/*.tsx", "packages/**/*.ts"],
"exclude": ["node_modules"]
}