From e663323175f75592fb9da528815ff4bd8a11754d Mon Sep 17 00:00:00 2001 From: Nux Date: Tue, 19 Dec 2023 16:35:08 +0100 Subject: [PATCH] dist exclude --- README.building your project.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.building your project.md b/README.building your project.md index 6519dbe..811dbea 100644 --- a/README.building your project.md +++ b/README.building your project.md @@ -94,12 +94,13 @@ Add `.vscode/extensions.json` to help install a set of **extensions**: VSC **settings** `.vscode/settings.json`: ```js { + "editor.detectIndentation": false, + "editor.useTabStops": true, + "editor.insertSpaces": false, "search.exclude": { "package-lock.json": true, + "**/dist/": true, }, - "editor.detectIndentation": false, - "editor.useTabStops": true, - "editor.insertSpaces": false, } ```