Skip to content

Commit d43c6d4

Browse files
committed
chore(root/.vscode): add code-workspace
1 parent 1398388 commit d43c6d4

File tree

2 files changed

+40
-20
lines changed

2 files changed

+40
-20
lines changed

.vscode/settings.json

+12-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
1-
{
2-
"vitest.enable": true,
3-
"vitest.include": ["**/__test__/**/*.test.ts"],
4-
"vitest.exclude": ["**/node_modules/**", "**/dist/**", "**/.history/**"],
5-
"vitest.commandLine": "pnpm exec vitest -u --api.host 127.0.0.1",
6-
"typescript.tsdk": "node_modules/typescript/lib",
7-
"twind.attributes": ["tw", "apply"],
8-
9-
"eslint.validate": ["javascript", "typescript"],
10-
"eslint.options": {
11-
"extensions": [".js", ".ts"]
12-
},
13-
"editor.codeActionsOnSave": {
14-
"source.fixAll.eslint": true
15-
},
16-
"editor.formatOnSave": true,
17-
"[typescript]": {
18-
"editor.formatOnSave": false
19-
}
20-
}
1+
{
2+
"vitest.enable": true,
3+
"vitest.include": ["**/__test__/**/*.test.ts"],
4+
"vitest.exclude": ["**/node_modules/**", "**/dist/**", "**/.history/**"],
5+
"vitest.commandLine": "pnpm exec vitest -u --api.host 127.0.0.1",
6+
"typescript.tsdk": "node_modules/typescript/lib",
7+
"twind.attributes": ["tw", "apply"],
8+
"editor.codeActionsOnSave": {
9+
"source.fixAll.eslint": true
10+
},
11+
"editor.formatOnSave": true
12+
}

.vscode/type-zen.code-workspace

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "root",
5+
"path": ".."
6+
},
7+
{
8+
"name": "core",
9+
"path": "../packages/core"
10+
},
11+
{
12+
"name": "cli",
13+
"path": "../packages/cli"
14+
},
15+
{
16+
"name": "website/playground",
17+
"path": "../website/playground"
18+
}
19+
],
20+
"settings": {
21+
"editor.codeActionsOnSave": {
22+
"source.fixAll.eslint": true
23+
},
24+
"editor.formatOnSave": true,
25+
"typescript.tsdk": "root/node_modules/typescript/lib",
26+
"twind.attributes": ["tw", "apply"]
27+
}
28+
}

0 commit comments

Comments
 (0)