Vue.js (webpack + vueify) with TypeScript is my current setup. The ts configuration appears to be functioning, but only in .ts files.
For instance, in tsconfig.json:
"compilerOptions": {
"strictNullChecks": false,
So strictNullChecks works as expected in .ts files:
https://i.sstatic.net/AdFfs.png
However, it doesn't work in .vue files:
https://i.sstatic.net/8jA0u.png
Encountering the error:
Initializer type null is not assignable to variable type string
TypeScript isn't throwing compile errors; only PhpStorm seems to have issues detecting the configuration.
Is there a way for the configuration in tsconfig.json to apply to .vue files as well?