|
9 | 9 | "source.addMissingImports": "always"
|
10 | 10 | },
|
11 | 11 |
|
| 12 | + "[typescript]": { |
| 13 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 14 | + "editor.formatOnPaste": false, |
| 15 | + "editor.formatOnSave": true, |
| 16 | + |
| 17 | + "editor.codeActionsOnSave": { |
| 18 | + "source.organizeImports": "explicit", |
| 19 | + "source.fixAll.eslint": "explicit", |
| 20 | + "source.addMissingImports": "always" |
| 21 | + } |
| 22 | + }, |
| 23 | + "[javascript]": { |
| 24 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 25 | + "editor.formatOnPaste": false, |
| 26 | + "editor.formatOnSave": true, |
| 27 | + |
| 28 | + "editor.codeActionsOnSave": { |
| 29 | + "source.organizeImports": "explicit", |
| 30 | + "source.fixAll.eslint": "explicit", |
| 31 | + "source.addMissingImports": "always" |
| 32 | + } |
| 33 | + }, |
| 34 | + |
12 | 35 | "editor.tabSize": 2,
|
13 | 36 |
|
14 | 37 | "files.exclude": {
|
15 |
| - "**/*.tsbuildinfo": true |
| 38 | + "**/*.tsbuildinfo": true, |
| 39 | + "**/node_modules": true, |
| 40 | + "**/dist": true |
16 | 41 | },
|
17 | 42 | "files.eol": "\n",
|
18 | 43 |
|
19 | 44 | "typescript.preferences.importModuleSpecifier": "relative",
|
20 | 45 | "eslint.workingDirectories": [{ "mode": "auto" }],
|
21 | 46 | "debug.javascript.terminalOptions": {
|
22 | 47 | "nodeVersionHint": 20
|
23 |
| - } |
| 48 | + }, |
| 49 | + "nodejs-testing.include": ["./**/**"], |
| 50 | + "nodejs-testing.extensions": [ |
| 51 | + { |
| 52 | + "extensions": ["ts", "mts"], |
| 53 | + "filePatterns": ["**/*.spec.ts", "**/*.spec.mts"], |
| 54 | + "parameters": ["--import", "tsx"] |
| 55 | + } |
| 56 | + ] |
24 | 57 | }
|
0 commit comments