[Vuejs]-Tsconfig.json file outside of project directory

3👍

Try this: keep your existing tsconfig.json, then in each of the folders create a tsconfig.json with the following content:

{
    "extends": "../tsconfig.json"
}

Leave a comment