Sync actions from atomicqms-style deployment

Actions synced:

Synced at: 2025-12-27T16:24:04Z
This commit is contained in:
AtomicQMS Service
2025-12-27 11:24:04 -05:00
parent e4b706d591
commit d974130597
45 changed files with 7728 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode (Bun-specific)
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src/**/*", "base-action/**/*", "test/**/*"],
"exclude": ["node_modules"]
}