As you know @ is a placeholder for /src and the application compiles and runs properly if I use it so. But my VSCode thinks the module is not there and show me an error message:
Question 1: How can I teach VSCode how to find the modules?
A similar situation is the following:
export default class HelloWorld extends Vue {
@Prop() private msg!: string;
}
There are two errors in the IDE (while the application compiles and runs properly):
1) !: is red underlined -> Expression expected
2) string is red underlined -> Member 'string' implicitly has an 'any' type.
But these are not really errors, that's the normal syntax and VSCode cannot deal with it. Vetur Extension (Vue Tooling for VSCode) is already installed.
Question 2: How can I deal with Vue + TypeScript in VSCode at all? What (all) do I have to consider?


