This repository has been archived by the owner on Feb 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
7,207 additions
and
6,134 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"dep": ["prod", "dev", "optional", "peer"], | ||
"peer": true | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# - npm | ||
legacy-peer-deps=true | ||
engine-strict=true | ||
save-exact=true | ||
|
||
# - pnpm | ||
auto-install-peers=true | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.renderWhitespace": "all", | ||
// Configure glob patterns for excluding files and folders. | ||
// For example, the files explorer decides which files and folders to show | ||
// or hide based on this setting. | ||
// Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options). | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true | ||
}, | ||
// Configure glob patterns of file paths to exclude from file watching. | ||
// Patterns must match on absolute paths | ||
// (i.e. prefix with ** or the full path to match properly). | ||
// Changing this setting requires a restart. | ||
// When you experience Code consuming lots of cpu time on startup, | ||
// you can exclude large folders to reduce the initial load. | ||
"files.watcherExclude": { | ||
"**/.git/objects/**": true, | ||
"**/.git/subtree-cache/**": true, | ||
"**/node_modules/**": true, | ||
"**/tmp/**": true, | ||
"**/bower_components/**": true, | ||
"**/dist/**": true | ||
}, | ||
// Configure glob patterns for excluding files and folders in searches. | ||
// Inherits all glob patterns from the `files.exclude` setting. | ||
// Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options). | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/bower_components": true | ||
}, | ||
"javascript.preferences.importModuleSpecifier": "relative", | ||
"javascript.updateImportsOnFileMove.enabled": "always", | ||
"typescript.preferences.importModuleSpecifier": "relative", | ||
"typescript.updateImportsOnFileMove.enabled": "always", | ||
"html.customData": ["./node_modules/@public-ui/components/vscode-custom-data.json"] | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.