{ "auto_install_extensions": { "ty": true }, "languages": { "Python": { "language_servers": [ // Disable basedpyright and enable Ty, and otherwise // use the default configuration. "ty", "!basedpyright", "..." ] }, "TypeScript": { "language_servers": [ // Enable oxc for TypeScript files. "oxc", "..." ] }, "JavaScript": { "language_servers": [ // Enable oxc for JavaScript files. "oxc", "..." ] } }, "lsp": { "oxc": { "initialization_options": { "options": { "run": "onType", "configPath": null, "tsConfigPath": null, "unusedDisableDirectives": "allow", "typeAware": true, "flags": {} } } } } }