create-quasar 1.0.14 → 1.0.17
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 +1 -1
- package/templates/app/quasar-v1/ts/BASE/src/index.template.html +1 -1
- package/templates/app/quasar-v2/js-vite/lint/_.eslintignore +0 -1
- package/templates/app/quasar-v2/ts-vite/BASE/_tsconfig.json +1 -2
- package/templates/app/quasar-v2/ts-vite/lint/_.eslintrc.js +1 -1
- package/templates/app/quasar-v2/ts-webpack/BASE/quasar.config.js +3 -3
- package/templates/app/quasar-v2/ts-webpack/lint/_.eslintrc.js +1 -1
- package/templates/app/quasar-v2/ts-vite/BASE/_tsconfig.node.json +0 -7
package/package.json
CHANGED
|
@@ -15,6 +15,5 @@
|
|
|
15
15
|
"experimentalDecorators": true,
|
|
16
16
|
"useDefineForClassFields": true<% } %>
|
|
17
17
|
},
|
|
18
|
-
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
19
|
-
"references": [{ "path": "./tsconfig.node.json" }]
|
|
18
|
+
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
20
19
|
}
|
|
@@ -120,7 +120,7 @@ module.exports = {
|
|
|
120
120
|
// in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
|
|
121
121
|
'@typescript-eslint/no-var-requires': 'off',
|
|
122
122
|
|
|
123
|
-
// The core 'no-unused-vars' rules (in the eslint:
|
|
123
|
+
// The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
|
|
124
124
|
// does not work with type definitions
|
|
125
125
|
'no-unused-vars': 'off',
|
|
126
126
|
|
|
@@ -82,7 +82,7 @@ module.exports = configure(function (ctx) {
|
|
|
82
82
|
|
|
83
83
|
// https://v2.quasar.dev/quasar-cli-webpack/handling-webpack
|
|
84
84
|
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
|
|
85
|
-
chainWebpack (/* chain */) {}
|
|
85
|
+
// chainWebpack (/* chain */) {}
|
|
86
86
|
},
|
|
87
87
|
|
|
88
88
|
// Full list of options: https://v2.quasar.dev/quasar-cli-webpack/quasar-config-js#Property%3A-devServer
|
|
@@ -129,7 +129,7 @@ module.exports = configure(function (ctx) {
|
|
|
129
129
|
maxAge: 1000 * 60 * 60 * 24 * 30,
|
|
130
130
|
// Tell browser when a file from the server should expire from cache (in ms)
|
|
131
131
|
|
|
132
|
-
chainWebpackWebserver (/* chain */) {},
|
|
132
|
+
// chainWebpackWebserver (/* chain */) {},
|
|
133
133
|
|
|
134
134
|
middlewares: [
|
|
135
135
|
ctx.prod ? 'compression' : '',
|
|
@@ -144,7 +144,7 @@ module.exports = configure(function (ctx) {
|
|
|
144
144
|
|
|
145
145
|
// for the custom service worker ONLY (/src-pwa/custom-service-worker.[js|ts])
|
|
146
146
|
// if using workbox in InjectManifest mode
|
|
147
|
-
chainWebpackCustomSW (/* chain */) {},
|
|
147
|
+
// chainWebpackCustomSW (/* chain */) {},
|
|
148
148
|
|
|
149
149
|
manifest: {
|
|
150
150
|
name: `<%= productName %>`,
|
|
@@ -124,7 +124,7 @@ module.exports = {
|
|
|
124
124
|
// in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
|
|
125
125
|
'@typescript-eslint/no-var-requires': 'off',
|
|
126
126
|
|
|
127
|
-
// The core 'no-unused-vars' rules (in the eslint:
|
|
127
|
+
// The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
|
|
128
128
|
// does not work with type definitions
|
|
129
129
|
'no-unused-vars': 'off',
|
|
130
130
|
|