Is this config suitable for vue2 project?
lovetingyuan opened this issue · 2 comments
lovetingyuan commented
Is this config suitable for vue2 project?
xiaoxiangmoe commented
Yes. Here is my vue2 ts config
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["./src/**/*"],
"vueCompilerOptions": {
"experimentalCompatMode": 2
}
}
lovetingyuan commented
thank you, I will try this.