create-quasar 1.0.25 → 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
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@babel/eslint-parser": "^7.13.14",
|
|
22
22
|
"eslint": "^8.10.0",
|
|
23
23
|
"eslint-plugin-vue": "^9.0.0",
|
|
24
|
-
"eslint-webpack-plugin": "^
|
|
24
|
+
"eslint-webpack-plugin": "^2.0.0",
|
|
25
25
|
<% if (lintConfig === 'standard') { %>
|
|
26
26
|
"eslint-config-standard": "^17.0.0",
|
|
27
27
|
"eslint-plugin-import": "^2.19.1",
|
|
@@ -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
|
-
|
|
14
|
-
|
|
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: {
|