konoplayer/.vscode/settings.json
2025-03-21 13:54:39 +08:00

11 lines
337 B
JSON

{
// allow autocomplete for ArkType expressions like "string | num"
"editor.quickSuggestions": {
"strings": "on"
},
// prioritize ArkType's "type" for autoimports
"typescript.preferences.autoImportSpecifierExcludeRegexes": [
"^(node:)?os$"
],
"typescript.tsdk": "node_modules/typescript/lib"
}