summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 5f36a32af447ce75a2c14bf8b333292a94c4a168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"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
}