Initial commit: sam-devops

This commit is contained in:
2026-08-26 13:19:20 +10:00
commit b0d4c41510
37 changed files with 2998 additions and 0 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": { "@/*": ["./*"] },
"allowImportingTsExtensions": true,
"noEmit": true
}
}