Created
March 9, 2023 15:27
-
-
Save SamsadSajid/fe481c2190a5fb97daed836c4c971b4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add the followings in the vscode settings.json | |
// Credit: James King | |
"explorer.fileNesting.patterns":{ | |
"*.ts": "${capture}.test.ts", | |
"*.go": "${capture}_test.go", | |
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts, ${capture}.test.js", | |
"*.jsx": "${capture}.test.jsx", | |
"*.tsx": "${capture}.test.tsx", | |
"tsconfig.json": "tsconfig.*.json", | |
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml", | |
"*.scss": "${capture}.scss.d.ts", | |
}, | |
"explorer.fileNesting.enabled": true, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment