Skip to content

Commit 24eb19c

Browse files
committed
[release] v3.2.0
- Reworked hover functions. Now displays descriptions and arguments list. - Snippets for built-in functions and variables updated. - Grammars bug fixed. - Type `polyline` added.
1 parent d793b83 commit 24eb19c

File tree

4 files changed

+31
-14
lines changed

4 files changed

+31
-14
lines changed

.gitignore

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1+
.vscode/**
2+
dist/**
13
node_modules/**
4+
*.vsix
5+
*.orig
26
.eslintrc.json
3-
.vscode/extensions.json
4-
.vscode/launch.json
5-
.vscode/settings.json
6-
.vscode/tasks.json
77
.vscodeignore
8-
dist/extension.js
9-
dist/extension.js.map
10-
tsconfig.json
118
webpack.config.js
12-
vsc-extension-quickstart.md
13-
*.vsix
14-
.vscode/settings.json
15-
*.orig
9+
vsc-extension-quickstart.md

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"icon": "images/pineicon.png",
66
"publisher": "salbert11",
77
"license": "MIT",
8-
"version": "3.2.0-beta-1",
8+
"version": "3.2.0",
99
"engines": {
1010
"vscode": "^1.62.0"
1111
},

tsconfig.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "ES2020",
5+
"lib": [
6+
"ES2020"
7+
],
8+
"sourceMap": true,
9+
"rootDir": "src",
10+
"strict": true, /* enable all strict type-checking options */
11+
/* Additional Checks */
12+
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13+
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
14+
// "noUnusedParameters": true, /* Report errors on unused parameters. */
15+
//"esModuleInterop": true,
16+
"moduleResolution": "node",
17+
"resolveJsonModule": true
18+
},
19+
"exclude": [
20+
"node_modules",
21+
".vscode-test"
22+
]
23+
}

0 commit comments

Comments
 (0)