create-quasar 1.0.27 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-quasar",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "description": "Scaffolds Quasar Apps, AppExtensions or UI kits",
5
5
  "author": {
6
6
  "name": "Razvan Stoenescu",
@@ -10,8 +10,12 @@ module.exports = {
10
10
  // Must use parserOptions instead of "parser" to allow vue-eslint-parser to keep working
11
11
  // `parser: 'vue-eslint-parser'` is already included with any 'plugin:vue/**' config and should be omitted
12
12
  parserOptions: {
13
- parser: require.resolve('@typescript-eslint/parser'),
14
- extraFileExtensions: [ '.vue' ]
13
+ extraFileExtensions: ['.vue'],
14
+ parser: '@typescript-eslint/parser',
15
+ project: resolve(__dirname, './tsconfig.json'),
16
+ tsconfigRootDir: __dirname,
17
+ ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
18
+ sourceType: 'module' // Allows for the use of imports
15
19
  },
16
20
 
17
21
  env: {