Fixes most errors caused by installing <nativescript-vue> plugin. IMPORTANT: run "vue invoke nativescript-vue-preset" twice after adding. Adds .eslint.js, replaces ~tilde with @at paths & (fixes Unable to resolve path to module import/no-unresolved & impo
npm install vue-cli-plugin-nativescript-vue-presetBEFORE installing: create project using vue create --preset vpiskunov/preset-vue-ns {your-project-name}
IMPORTANT: run \"vue invoke nativescript-vue-preset\" twice after adding.
What does it do:
* ✅ Adds support for platform-tagged CSS lines: e.g. adding [web] will keep that line for web, but not in native. Multiple tags per line can be added e.g. [web][android] will only keep that line in web & android, but will remove it for iOS builds etc.
* Supported platform tags are:
```
* web: ['web', 'w', 'cross']
* ios: ['native', 'n', 'ios', 'apple', 'cross']
* android: ['native', 'n', 'android', 'cross']
(you can always edit .eslintrc.js to suit your style)
* ✅ Adds .eslint.js, with support for fixed module-require resolving + disables unreasonable rules ~/
* ✅ Replaces tilde with @/at paths: fixes Unable to resolve path to module import/no-unresolved & import/extensions`