-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.26 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.26 KB
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
{
"compilerOptions": {
"allowJs": true,
"incremental": true,
"outDir": "dist",
"lib": ["es2022"],
"module": "es2022",
"sourceMap": true,
"target": "ES2022",
"baseUrl": ".",
"paths": {
"*": ["./node_modules/@moddable/typings/*"],
"commodetto/*": ["./node_modules/@moddable/typings/commodetto/*"],
"dns/*": ["./node_modules/@moddable/typings/dns/*"],
"mc/*": ["./node_modules/@moddable/typings/mc/*"],
"pins/*": ["./node_modules/@moddable/typings/pins/*"],
"piu/*": ["./node_modules/@moddable/typings/piu/*"],
"text/*": ["./node_modules/@moddable/typings/text/*"],
"embedded:provider/*": [
"./node_modules/@moddable/typings/embedded_provider/*"
],
"embedded:io/*": ["./node_modules/@moddable/typings/embedded_io/*"],
"embedded:io/socket/*": [
"./node_modules/@moddable/typings/embedded_io/socket/*"
],
"embedded:network/http/*": [
"./node_modules/@moddable/typings/embedded_network/http/*"
],
"embedded:network/mqtt/*": [
"./node_modules/@moddable/typings/embedded_network/mqtt/*"
],
"embedded:network/dns/resolver/*": [
"./node_modules/@moddable/typings/embedded_network/dns/resolver/*"
]
},
"types": [
"./node_modules/@moddable/typings/xs",
"./node_modules/@moddable/typings/mcpack"
]
}
}