Skip to content

Commit 515ad17

Browse files
committed
refactor: update build process and configuration
- Changed the main entry point from './out/extension.js' to './dist/extension.js' in package.json. - Updated the saveInterval and inactivityTimeout properties formatting in package.json. - Modified npm scripts to use webpack for building and packaging the extension. - Added webpack configuration file for managing the build process. - Introduced new devDependencies for webpack and ts-loader. - Created a new VSIX package for version 0.3.6 of the extension.
1 parent 57d2ebc commit 515ad17

8 files changed

Lines changed: 1444 additions & 90 deletions

.vscodeignore

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
.vscode/**
22
.vscode-test/**
3-
out/test/**
43
src/**
4+
out/test/**
5+
test/**
6+
scripts/**
7+
images/**
58
.gitignore
6-
vsc-extension-quickstart.md
7-
**/tsconfig.json
8-
**/tslint.json
9+
.yarnrc
10+
tsconfig.json
11+
.eslintrc.json
912
**/*.map
10-
**/*.ts
13+
**/*.ts
14+
CONTRIBUTING.md
15+
TECHNICAL.md
16+
.github/**
17+
**/*.vsix
18+
webpack.config.js
19+
node_modules/**
20+
!node_modules/@types/

0 commit comments

Comments
 (0)