exclude the polyfill files as well from being transpiled
as they are not used in the development build
This commit is contained in:
parent
ebd177263a
commit
522f8d085a
1 changed files with 7 additions and 1 deletions
|
@ -13,7 +13,13 @@ module.exports = {
|
||||||
},
|
},
|
||||||
exclude: [
|
exclude: [
|
||||||
/* Avoid scanning scripts which use dev-dependencies and pull in babel, rollup, etc. */
|
/* Avoid scanning scripts which use dev-dependencies and pull in babel, rollup, etc. */
|
||||||
'**/node_modules/**/*', '**/scripts/**', '**/target/**', '**/prototypes/**', '**/src/matrix/storage/memory/**'
|
'**/node_modules/**/*',
|
||||||
|
'**/scripts/**',
|
||||||
|
'**/target/**',
|
||||||
|
'**/prototypes/**',
|
||||||
|
'**/src/matrix/storage/memory/**',
|
||||||
|
'**/src/platform/web/legacy-polyfill.js',
|
||||||
|
'**/src/platform/web/worker/polyfill.js'
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
/* ... */
|
/* ... */
|
||||||
|
|
Reference in a new issue