build nodejs

This commit is contained in:
2025-04-24 21:09:04 -04:00
parent b9ca51af01
commit b348133412
40 changed files with 6093 additions and 74 deletions

49
sdk/nodejs/tsconfig.json generated Normal file
View File

@@ -0,0 +1,49 @@
{
"compilerOptions": {
"outDir": "bin",
"target": "es2016",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"stripInternal": true,
"experimentalDecorators": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"strict": true
},
"files": [
"certificate.ts",
"clusterGroup.ts",
"clusterGroupAssignment.ts",
"config/index.ts",
"config/vars.ts",
"getImage.ts",
"getProfile.ts",
"getProject.ts",
"image.ts",
"index.ts",
"instance.ts",
"instanceSnapshot.ts",
"network.ts",
"networkAcl.ts",
"networkForward.ts",
"networkIntegration.ts",
"networkLb.ts",
"networkLoadBalancer.ts",
"networkPeer.ts",
"networkZone.ts",
"networkZoneRecord.ts",
"profile.ts",
"project.ts",
"provider.ts",
"storageBucket.ts",
"storageBucketKey.ts",
"storagePool.ts",
"storageVolume.ts",
"types/index.ts",
"types/input.ts",
"types/output.ts",
"utilities.ts"
]
}