1 Star 1 Fork 0

zmh-program/turbowarp-ts-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 400 Bytes
一键复制 编辑 原始数据 按行查看 历史
zmh-program 提交于 2023-04-05 17:44 . fixed channel
const path = require("path");
module.exports = {
mode: "production",
entry: "./src/index.ts",
resolve: {
extensions : [ ".js", ".ts" ],
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: "extension.js",
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: [ "/node-modules/", "/src/vm.ts" ],
}
]
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/zmh-program/turbowarp-ts-plugin.git
git@gitee.com:zmh-program/turbowarp-ts-plugin.git
zmh-program
turbowarp-ts-plugin
turbowarp-ts-plugin
main

搜索帮助