文章
https://github.com/anncwb/vue-vben-admin
vscode 自动编译 ts
npm install -g typescript
cd tsPro
tsc --init
tsconfig.json 配置如下:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs", // outFile 开启的时候值为amd,反之 commonjs
// "outFile": "./out/index.js", //多个ts文件合并输出至一个文件./out/index.js
"outDir": "./js", //多个ts文件会在js目录下输出多个js文件
}
}
vscode的设置搜索 experimentalDecorators
打上勾