-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
93 lines (93 loc) · 2.3 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"sourceMap": true,
"noImplicitAny": false,
"removeComments": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "@dark-engine/core",
"lib": [
"ES2021",
"DOM"
],
"typeRoots": [
"node_modules/@types"
],
"baseUrl": ".",
"paths": {
"@dark-engine/core": [
"./packages/core/src/index"
],
"@dark-engine/core/*": [
"./packages/core/src/*"
],
"@dark-engine/platform-browser": [
"./packages/platform-browser/src/index"
],
"@dark-engine/platform-browser/*": [
"./packages/platform-browser/src/*"
],
"@dark-engine/platform-server": [
"./packages/platform-server/src/index"
],
"@dark-engine/platform-server/*": [
"./packages/platform-server/src/*"
],
"@dark-engine/platform-native": [
"./packages/platform-native/src/index"
],
"@dark-engine/platform-native/*": [
"./packages/platform-native/src/*"
],
"@dark-engine/platform-desktop": [
"./packages/platform-desktop/src/index"
],
"@dark-engine/platform-desktop/*": [
"./packages/platform-desktop/src/*"
],
"@dark-engine/web-router": [
"./packages/web-router/src/index"
],
"@dark-engine/web-router/*": [
"./packages/web-router/src/*"
],
"@dark-engine/native-navigation": [
"./packages/native-navigation/src/index"
],
"@dark-engine/native-navigation/*": [
"./packages/native-navigation/src/*"
],
"@dark-engine/animations": [
"./packages/animations/src/index"
],
"@dark-engine/animations/*": [
"./packages/animations/src/*"
],
"@dark-engine/styled": [
"./packages/styled/src/index"
],
"@dark-engine/styled/*": [
"./packages/styled/src/*"
],
"@dark-engine/data": [
"./packages/data/src/index"
],
"@dark-engine/data/*": [
"./packages/data/src/*"
],
"@test-utils": [
"./test/utils"
]
}
},
"include": [
"./packages/**/*",
"./examples/**/*",
"./templates/**/*",
"./test/**/*",
"./*.js"
]
}