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
12
"license": "ISC",
13
13
"dependencies": {
14
14
"@bokuweb/zstd-wasm": "^0.0.27",
15
15
-
"axios": "^1.13.0"
15
15
+
"axios": "^1.13.0",
16
16
+
"@types/node": "^24.9.2"
16
17
},
17
17
-
"devDependencies": {
18
18
-
"@types/node": "^24.9.2"
18
18
+
"compilerOptions": {
19
19
+
"module": "node20"
19
20
}
20
21
}
+8
typescript/tsconfig.json
···
1
1
+
{
2
2
+
"compilerOptions": {
3
3
+
"target": "ESNext",
4
4
+
"lib": ["ESNext"],
5
5
+
"module": "nodenext",
6
6
+
"moduleResolution": "nodenext"
7
7
+
}
8
8
+
}