Skip to content

Instantly share code, notes, and snippets.

@khadorkin
Forked from franky47/settings.json
Created February 17, 2022 05:08
Show Gist options
  • Save khadorkin/f7cf4560952063ef2ed99b923e5b8fa1 to your computer and use it in GitHub Desktop.
Save khadorkin/f7cf4560952063ef2ed99b923e5b8fa1 to your computer and use it in GitHub Desktop.
VSCode experimental file nesting configuration
{
"explorer.experimental.fileNesting.enabled": true,
"explorer.experimental.fileNesting.patterns": {
"*.ts": "$(capture).js, $(capture).d.ts, $(capture).test.ts",
"*.js": "$(capture).js.map, $(capture).min.js, $(capture).d.ts, $(capture).test.js",
"*.jsx": "$(capture).js",
"*.tsx": "$(capture).ts, $(capture).*.ts, $(capture).*.tsx",
"tsconfig.json": "tsconfig.*.json",
"docker-compose.yml": "docker-compose.*.yml",
".env": ".env.*",
"next.config.*": "next-env.d.ts",
"package.json": "package-lock.json, .npmrc, yarn.lock, .yarnrc, .eslintrc.json, .swcrc"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment