mirror of
https://github.com/misskey-dev/misskey
synced 2025-07-11 06:02:50 +02:00
19 lines
551 B
JSON
19 lines
551 B
JSON
{
|
|
"search.exclude": {
|
|
"**/node_modules": true
|
|
},
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"files.associations": {
|
|
"*.test.ts": "typescript"
|
|
},
|
|
"jest.runMode": "on-demand",
|
|
"jest.virtualFolders": [
|
|
{ "name": "backend unit", "jestCommandLine": "pnpm -F backend run test" },
|
|
{ "name": "backend e2e", "jestCommandLine": "pnpm -F backend run test:e2e"},
|
|
{ "name": "misskey-js", "jestCommandLine": "pnpm -F misskey-js run jest" }
|
|
],
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit"
|
|
},
|
|
"editor.formatOnSave": false
|
|
}
|