- Remove last runtimeEnv import from processMessage.ts - Add env: Env param to all functions with 'Cannot find name env' errors - Convert initRedisV2 to lazy initialization (ensureRedisV2 + Proxy) - Add Bindings: Env to StripeWebhookHonoEnv - Fix 12+ files across external/, internal/, queue/ modules - Scanning test passes: 1/1 (runtime-env-imports.test.ts)
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"python.defaultInterpreterPath": "others/python-test/.venv/bin/python",
|
|
"python.analysis.extraPaths": [
|
|
"others/python-sdk/src"
|
|
],
|
|
"python.autoComplete.extraPaths": [
|
|
"others/python-sdk/src"
|
|
],
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"emmet.showExpandedAbbreviation": "never",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.biome": "explicit",
|
|
"source.organizeImports.biome": "explicit"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"postman.settings.dotenv-detection-notification-visibility": false,
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"files.exclude": {
|
|
// "**/.claude": true,
|
|
"**/.cursor": true,
|
|
// "**/.github": true,
|
|
"**/.superset": true,
|
|
// ".claude": true,
|
|
".codex": true,
|
|
".agents": true,
|
|
".cursor": true,
|
|
".mcp.json": true,
|
|
".zed": true
|
|
},
|
|
"typescript.native-preview.tsdk": "/Users/johnyeocx/autumn/main/node_modules/@typescript/native-preview"
|
|
} |