From 7361a02ef33c8e5831b72bde8d958e654f57ab96 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 13 Jul 2025 23:59:25 +0800 Subject: wip: github actions --- sdks/github/tsconfig.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sdks/github/tsconfig.json (limited to 'sdks/github/tsconfig.json') diff --git a/sdks/github/tsconfig.json b/sdks/github/tsconfig.json new file mode 100644 index 000000000..59435b49c --- /dev/null +++ b/sdks/github/tsconfig.json @@ -0,0 +1,29 @@ +{ + "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 + } +} -- cgit v1.2.3