Skip to content

Commit 4327033

Browse files
mino chnage
1 parent a6bd540 commit 4327033

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.vscode/**
22
.vscode-test/**
3-
out/**
3+
44
node_modules/**
55
src/**
66
.gitignore

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Auto Closing Tags
22

3+
![Visual Studio Marketplace Downloads](https://img.shields.io/visual-studio-marketplace/d/Codegyan.auto-closing-tags?style=flat&link=https%3A%2F%2Fmarketplace.visualstudio.com%2Fitems%3FitemName%3DCodegyan.auto-closing-tags)
4+
5+
36
**Auto Closing Tags** is a Visual Studio Code extension that automatically inserts closing tags for multiple programming and markup languages. This extension enhances your coding efficiency by reducing the time spent on manually typing closing tags.
47

58
## Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"onLanguage:cfml",
5151
"onCommand:auto-close-tag.closeTag"
5252
],
53-
"main": "./dist/extension.js",
53+
"main": "./dist/src/extension.js",
5454
"contributes": {
5555
"commands": [
5656
{

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"target": "es6",
44
"module": "commonjs",
5-
"outDir": "out",
5+
"outDir": "./dist",
66
"rootDir": ".",
77
"strict": true,
88
"esModuleInterop": true,
@@ -12,5 +12,5 @@
1212
"types": ["node"]
1313
},
1414
"include": ["src/**/*.ts", "test/**/*.ts"],
15-
"exclude": ["node_modules", "out"]
15+
"exclude": ["node_modules", ".vscode", "dist"]
1616
}

0 commit comments

Comments
 (0)