I am using Visual Studio Code for developing web components with help of stencil. Writing a basic component requires using decorators in typescript file. Visual Studio Code showed me a error message, because, decorators are not supported by default in typescript. Creating tsconfig.json in the root directory and adding this "experimentalDecorators": true
to it, suppressed the warning. Now I am wondering, would stencil compiler use this config for typescript handling or it is just a config for some IDE specific tool?
↧
Does stencil use tsconfig.json?
↧