-
Notifications
You must be signed in to change notification settings - Fork 79
/
tsconfig.json
40 lines (40 loc) · 1.22 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
{
"compilerOptions": {
"experimentalDecorators": true,
"suppressExcessPropertyErrors": true,
"downlevelIteration": true,
"allowJs": true,
"esModuleInterop": true,
"declaration": true,
"outDir": "./lib",
"target": "es5",
"strictNullChecks": false,
"sourceMap": true,
"skipLibCheck": true,
"jsx": "react",
"baseUrl": ".",
"lib": ["dom", "es2015"],
"paths": {
// "@/*": ["src/*"],
"@blink-mind/core": ["packages/core/src"],
"@blink-mind/icons": ["packages/icons"],
"@blink-mind/renderer-react": ["packages/renderer-react/src"],
"@blink-mind/plugin-json-serializer": [
"packages/plugin-json-serializer/src"
],
"@blink-mind/plugin-topology-diagram": [
"packages/plugin-topology-diagram/src"
],
"@blink-mind/plugins": ["packages/plugins/src"]
}
},
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/renderer-react" },
{ "path": "./packages/plugin-json-serializer" },
{ "path": "./packages/plugins" },
{ "path": "./packages/plugin-topology-diagram" }
],
"include": ["packages/*/src", "stories/"],
"exclude": ["node_modules", "**/*.spec.ts", "./dist", "**/*.test.ts"]
}