tangled
alpha
login
or
join now
atscan.net
/
plcbundle-ref
5
fork
atom
PLC Bundle V1 Example Implementations
5
fork
atom
overview
issues
pulls
pipelines
fix ts config
tree.fail
4 months ago
929b30c4
9a773b02
+12
-3
2 changed files
expand all
collapse all
unified
split
typescript
package.json
tsconfig.json
+4
-3
typescript/package.json
···
12
"license": "ISC",
13
"dependencies": {
14
"@bokuweb/zstd-wasm": "^0.0.27",
15
-
"axios": "^1.13.0"
0
16
},
17
-
"devDependencies": {
18
-
"@types/node": "^24.9.2"
19
}
20
}
···
12
"license": "ISC",
13
"dependencies": {
14
"@bokuweb/zstd-wasm": "^0.0.27",
15
+
"axios": "^1.13.0",
16
+
"@types/node": "^24.9.2"
17
},
18
+
"compilerOptions": {
19
+
"module": "node20"
20
}
21
}
+8
typescript/tsconfig.json
···
0
0
0
0
0
0
0
0
···
1
+
{
2
+
"compilerOptions": {
3
+
"target": "ESNext",
4
+
"lib": ["ESNext"],
5
+
"module": "nodenext",
6
+
"moduleResolution": "nodenext"
7
+
}
8
+
}