| 12345678910111213141516171819202122232425262728293031 |
- {
- // Use the project's typescript version
- "typescript.tsdk": "node_modules/typescript/lib",
- "cSpell.enabledFileTypes": {
- "markdown": true,
- "plaintext": true,
- "text": true,
- "yml": true
- },
- "prettier.enable": false,
- "eslint.enable": false,
- "oxc.enable": true,
- "editor.codeActionsOnSave": {
- "source.fixAll.oxc": "explicit"
- },
- // Use Oxc to format TypeScript, JavaScript and JSON files
- "[typescript]": {
- "editor.defaultFormatter": "oxc.oxc-vscode"
- },
- "[javascript]": {
- "editor.defaultFormatter": "oxc.oxc-vscode"
- },
- // oxc-vscode does not yet support JSON formatting
- // "[json]": {
- // "editor.defaultFormatter": "oxc.oxc-vscode"
- // },
- "editor.formatOnSave": true,
- "vitest.disableWorkspaceWarning": true
- }
|