美文网首页
vant在ts里的配置

vant在ts里的配置

作者: divine_zhouo | 来源:发表于2019-12-26 10:55 被阅读0次
    ```source-js
    // webpack.config.js
    const tsImportPluginFactory = require('ts-import-plugin')
    
    module.exports = {
      // ...
      module: {
        rules: [
          {
            test: /\.tsx?$/,
            loader: 'awesome-typescript-loader',
            options: {
              getCustomTransformers: () => ({
                before: [ tsImportPluginFactory( /** options */) ]
              }),
            },
            exclude: /node_modules/
          }
        ]
      },
      // ...
    }
    
    // options为UI组件的配置:
    // vant:  
    //     tsImportPluginFactory({
    //        libraryName: 'antd',
    //        libraryDirectory: 'lib',
    //        style: true
    //    })
    

    [参考引用] https://github.com/Brooooooklyn/ts-import-plugin

    相关文章

      网友评论

          本文标题:vant在ts里的配置

          本文链接:https://www.haomeiwen.com/subject/nyskoctx.html