Files
actions/claude-code-gitea-action-slim/tsconfig.json
AtomicQMS Service d974130597 Sync actions from atomicqms-style deployment
Actions synced:

Synced at: 2025-12-27T16:24:04Z
2025-12-27 11:24:04 -05:00

31 lines
768 B
JSON

{
"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"]
}