summaryrefslogtreecommitdiffhomepage
path: root/sdks/github/tsconfig.json
diff options
context:
space:
mode:
authorFrank <[email protected]>2025-07-25 17:34:47 -0400
committerFrank <[email protected]>2025-07-25 17:34:47 -0400
commit3a7a2a838ec6ba625aa27aaa73cf4ea8ee03e79e (patch)
tree0c9b4fbaf21001511959b6ba803b8b1b162868b7 /sdks/github/tsconfig.json
parent10ae43a12190ed3ac96ae1d672b1aa1dd006b072 (diff)
downloadopencode-3a7a2a838ec6ba625aa27aaa73cf4ea8ee03e79e.tar.gz
opencode-3a7a2a838ec6ba625aa27aaa73cf4ea8ee03e79e.zip
wip: github actions
Diffstat (limited to 'sdks/github/tsconfig.json')
-rw-r--r--sdks/github/tsconfig.json29
1 files changed, 0 insertions, 29 deletions
diff --git a/sdks/github/tsconfig.json b/sdks/github/tsconfig.json
deleted file mode 100644
index 59435b49c..000000000
--- a/sdks/github/tsconfig.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "compilerOptions": {
- // Environment setup & latest features
- "lib": ["ESNext"],
- "target": "ESNext",
- "module": "ESNext",
- "moduleDetection": "force",
- "jsx": "react-jsx",
- "allowJs": true,
-
- // Bundler mode
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "noEmit": true,
-
- // Best practices
- "strict": true,
- "skipLibCheck": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "noImplicitOverride": true,
-
- // Some stricter flags (disabled by default)
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "noPropertyAccessFromIndexSignature": false
- }
-}