소스 검색

Removes ts-loader experimentalWatchApi flag

Hoping to reduce strange issues with watch
main
Eric Amodio 5 년 전
부모
커밋
dd1803933c
1개의 변경된 파일4개의 추가작업 그리고 8개의 파일을 삭제
  1. +4
    -8
      webpack.config.js

+ 4
- 8
webpack.config.js 파일 보기

@ -37,8 +37,7 @@ function getExtensionConfig(env) {
new CleanPlugin({ cleanOnceBeforeBuildPatterns: ['**/*', '!**/webviews/**'] }),
new ForkTsCheckerPlugin({
async: false,
eslint: true,
useTypescriptIncrementalApi: true
eslint: true
})
];
@ -101,8 +100,7 @@ function getExtensionConfig(env) {
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
experimentalWatchApi: true
transpileOnly: true
}
}
}
@ -150,8 +148,7 @@ function getWebviewsConfig(env) {
new ForkTsCheckerPlugin({
tsconfig: path.resolve(__dirname, 'tsconfig.webviews.json'),
async: false,
eslint: true,
useTypescriptIncrementalApi: true
eslint: true
}),
new MiniCssExtractPlugin({
filename: '[name].css'
@ -257,8 +254,7 @@ function getWebviewsConfig(env) {
loader: 'ts-loader',
options: {
configFile: 'tsconfig.webviews.json',
transpileOnly: true,
experimentalWatchApi: true
transpileOnly: true
}
}
},

불러오는 중...
취소
저장