-
Notifications
You must be signed in to change notification settings - Fork 55
/
tsconfig.json
37 lines (37 loc) · 1.02 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
33
34
35
36
37
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["dom", "es2019"],
"jsx": "react",
"declaration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"noEmit": false,
"sourceMap": true,
"importHelpers": false,
"noEmitHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"resolveJsonModule": true,
"baseUrl": "./semcore",
"typeRoots": ["node_modules/@types", "tools/@types"],
"paths": {
"@semcore/illustration/*": ["illustration/*"],
"@semcore/ui/*": ["*/src"],
"intergalactic/*": ["*/src"],
"@semcore/*": ["*/src"],
"@tools/*": ["../tools/*"],
"@semcore/utils/lib/*": ["./utils/src/*"]
}
},
"project": ["./semcore/*/tsconfig.json", "./tools/*/tsconfig.json"],
"include": ["semcore", "tools", "stories"],
"exclude": [
"node_modules",
"tools/playground/examples/*",
"tools/playground/examples/**/*",
"tools/icon-transform-svg/__tests__"
]
}