mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
tweak SWC options to allow module interop
This commit is contained in:
parent
5012cb8fb8
commit
b9b51f0fb0
2 changed files with 4 additions and 4 deletions
|
@ -305,7 +305,7 @@ class SwcTranspiler {
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
type: 'amd',
|
type: 'amd',
|
||||||
noInterop: true
|
noInterop: false
|
||||||
},
|
},
|
||||||
minify: false,
|
minify: false,
|
||||||
};
|
};
|
||||||
|
@ -313,7 +313,7 @@ class SwcTranspiler {
|
||||||
...this._swcrcAmd,
|
...this._swcrcAmd,
|
||||||
module: {
|
module: {
|
||||||
type: 'commonjs',
|
type: 'commonjs',
|
||||||
importInterop: 'none'
|
importInterop: 'swc'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
static _swcrcEsm = {
|
static _swcrcEsm = {
|
||||||
|
|
|
@ -388,7 +388,7 @@ export class SwcTranspiler implements ITranspiler {
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
type: 'amd',
|
type: 'amd',
|
||||||
noInterop: true
|
noInterop: false
|
||||||
},
|
},
|
||||||
minify: false,
|
minify: false,
|
||||||
};
|
};
|
||||||
|
@ -397,7 +397,7 @@ export class SwcTranspiler implements ITranspiler {
|
||||||
...this._swcrcAmd,
|
...this._swcrcAmd,
|
||||||
module: {
|
module: {
|
||||||
type: 'commonjs',
|
type: 'commonjs',
|
||||||
importInterop: 'none'
|
importInterop: 'swc'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue