-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.01 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
38
39
40
41
42
43
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"jsx": "react-jsx",
"sourceMap": true,
"strict": true,
"noEmit": false,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"allowJs": false,
"checkJs": false,
"skipLibCheck": true,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@openassistant/core": ["./packages/core/src"],
"@openassistant/echarts": ["./packages/echarts/src"],
"@openassistant/common": ["./packages/common/src"]
}
},
"exclude": [
"node_modules",
"../../node_modules",
"**/node_modules/**",
"**/dist/**",
"**/*.d.ts",
"**/coverage/**",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.stories.tsx"
],
"references": [
{ "path": "./packages/duckdb" },
{ "path": "./packages/ui" },
{ "path": "./packages/core" },
{ "path": "./packages/geoda" },
{ "path": "./packages/common" }
]
}