forked from semrush/intergalactic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 901 Bytes
/
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
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["dom", "es2019"],
"jsx": "react",
"declaration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"strict": false,
"noEmit": false,
"sourceMap": true,
"importHelpers": false,
"noEmitHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"resolveJsonModule": true,
"baseUrl": "./semcore",
"typeRoots": ["node_modules/@types", "semcore/data-table/node_modules/@types", "tools/@types"]
},
"paths": {
"@semcore/ui/*": ["semcore/*"],
"@semcore/*": ["semcore/*"],
"@tools/*": ["tools/*"]
},
"project": ["./semcore/*/tsconfig.json", "./tools/*/tsconfig.json"],
"include": ["semcore", "tools"],
"exclude": [
"node_modules",
"website",
"**/__tests__/**",
"tools/generator-component/template-react"
]
}