Work CI-CD
- Another attempt to fix extension packaging. - Add exclusions.
This commit is contained in:
Родитель
603651f856
Коммит
6414c9d24e
|
@ -19,3 +19,7 @@ webpack.config.js
|
|||
**/.eslintrc.json
|
||||
**/*.map
|
||||
**/*.ts
|
||||
|
||||
!node_modules/axios
|
||||
!node_modules/globby
|
||||
!node_modules/path
|
|
@ -22,7 +22,9 @@ const config = {
|
|||
},
|
||||
devtool: 'source-map',
|
||||
externals: {
|
||||
vscode: "commonjs vscode" // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
|
||||
vscode: "commonjs vscode", // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
|
||||
axios: "axios",
|
||||
globby: "globby"
|
||||
},
|
||||
resolve: { // support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader
|
||||
extensions: ['.ts', '.js']
|
||||
|
|
Загрузка…
Ссылка в новой задаче