-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
73 lines (73 loc) · 2 KB
/
tsconfig.base.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"strict": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "ES2016",
"module": "esnext",
"lib": [
"es2017",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@eve/core": [
"packages/core/lib/index.ts"
],
"@eve/panel/feature/activity": [
"packages/panel/feature/activity/src/index.ts"
],
"@eve/panel/feature/auto-actions": [
"packages/panel/feature/auto-actions/src/index.tsx"
],
"@eve/panel/feature/core": [
"packages/panel/feature/core/src/index.ts"
],
"@eve/panel/feature/home": [
"packages/panel/feature/home/src/index.tsx"
],
"@eve/panel/feature/login-first": [
"packages/panel/feature/login-first/src/index.tsx"
],
"@eve/panel/feature/playlist": [
"packages/panel/feature/playlist/src/index.tsx"
],
"@eve/panel/feature/playlist-edit": [
"packages/panel/feature/playlist-edit/src/index.tsx"
],
"@eve/panel/feature/role-menu": [
"packages/panel/feature/role-menu/src/index.tsx"
],
"@eve/panel/feature/server-home": [
"packages/panel/feature/server-home/src/index.tsx"
],
"@eve/panel/feature/server-logs": [
"packages/panel/feature/server-logs/src/index.tsx"
],
"@eve/panel/feature/user-home": [
"packages/panel/feature/user-home/src/index.tsx"
],
"@eve/storage-migration": [
"packages/storage-migration/src/index.ts"
],
"@eve/types/api": [
"packages/types/api/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}