forked from alfonsobries/vue-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
27 lines (26 loc) · 792 Bytes
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* These are some necessary steps changing the default webpack config of the Vue CLI
* that need to be changed in order for TypeScript based components to generate their
* declaration (.d.ts) files.
* Code by various users from https://github.com/vuejs/vue-cli/issues/1081
*/
const fixEmitDeclarationFilesForTypeScript = {
chainWebpack: (config) => {
if (process.env.NODE_ENV === 'production') {
config.module.rule('ts').uses.delete('cache-loader');
config.module
.rule('ts')
.use('ts-loader')
.loader('ts-loader')
.tap((options) => ({
...options,
transpileOnly: false,
happyPackMode: false,
}));
}
},
parallel: false,
};
module.exports = {
...fixEmitDeclarationFilesForTypeScript,
};