Initial Pulumi Typescript implementation
Some checks failed
Pulumi / pulumi (push) Failing after 1m17s

This commit is contained in:
Prox
2026-02-15 17:16:47 +02:00
commit feb959703f
8 changed files with 3485 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./bin"
},
"include": ["*.ts"],
"exclude": ["node_modules"]
}