-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
341 additions
and
12 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,32 @@ | ||
{ | ||
/* | ||
This is a JSON file but it is treated like a JSONC (with comments). | ||
|
||
Different editors may complain about the comments. | ||
To reconfigure VS Code so it knows comments are ok, do this: https://azing.org/2sxc/r/h9m1l6JO | ||
*/ | ||
|
||
// Export-App configuration | ||
"export": { | ||
|
||
// Exclude certain folders/file beginning with the values specified below | ||
// Note that it may look like glob, but ATM it's a simpler starts-with mechanism | ||
"exclude": [ | ||
// Skip git versioning folders, github config folders | ||
".git/", | ||
".github/", | ||
// ".gitignore", | ||
|
||
// Webpack 5 temporary folder and NPM folders | ||
".temp_cache/", | ||
"node_modules/" | ||
|
||
// Other examples | ||
// ".vs", | ||
// ".vscode", | ||
// "package.json", | ||
// "package-lock.json", | ||
// "nuget.config", | ||
] | ||
} | ||
} |
Oops, something went wrong.