summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 2d11d24db2e4a987060fdc60dc38d0f7cedd24bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"search.exclude": {
		"**/node_modules": true
	},
	"typescript.tsdk": "node_modules/typescript/lib",
	"typescript.enablePromptUseWorkspaceTsdk": true,
	"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
}