Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1// This file allows us to define the git repo root directory as containing
2// multiple independent VS code workspaces (which, thanks to this file, can
3// still also be opened all at once). This lets us give each folder different
4// VSCode settings, which we need so that -- in server TS only -- auto-generated
5// ESM imports end with `.js`
6{
7 "folders": [
8 {
9 "path": "."
10 }
11 ],
12 "settings": {
13 "git.ignoreLimitWarning": true,
14 "editor.formatOnSave": true,
15 "editor.defaultFormatter": "esbenp.prettier-vscode",
16 "typescript.tsdk": "./node_modules/typescript/lib/",
17 "rewrap.autoWrap.enabled": true,
18 "editor.wordWrap": "off",
19 "githubPullRequests.ignoredPullRequestBranches": ["main"]
20 }
21}