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
| type Prettify<T> = { | |
| [K in keyof T]: T[K] | |
| } & {} |
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
| { | |
| "singleQuote": true, | |
| "tabWidth": 2, | |
| "semi": false, | |
| "endOfLine": "lf", | |
| "trailingComma": "none", | |
| "bracketSpacing": true, | |
| "arrowParens": "always", | |
| "proseWrap": "always", | |
| "importOrder": [ |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| /* Base Options: */ | |
| "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, | |
| "skipLibCheck": true /* Skip type checking all .d.ts files. */, | |
| "target": "ES2022" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, | |
| "allowJs": true /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */, | |
| "resolveJsonModule": true /* Enable importing .json files. */, | |
| "moduleDetection": "force" /* Control what method is used to detect module-format JS files. */, | |
| "isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */, |
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
| [ | |
| { | |
| /* -------------------------------------------- */ | |
| /* ✅ Toggle Explorer Bar */ | |
| /* -------------------------------------------- */ | |
| "key": "ctrl+e", | |
| "command": "workbench.action.toggleSidebarVisibility" | |
| }, | |
| { | |
| /* -------------------------------------------- */ |
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
| { | |
| /* ----------------------------- */ | |
| /* GENERAL */ | |
| /* ----------------------------- */ | |
| "breadcrumbs.enabled": false, | |
| "explorer.autoReveal": false, | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.fileNesting.enabled": false, | |
| "explorer.sortOrder": "type", |