Skip to content

Commit

Permalink
JASPER-157: WIP, updates to package and vue.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
JonTaylorBCGov2 committed Nov 18, 2024
1 parent 06dc617 commit 7be233a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 33 deletions.
34 changes: 17 additions & 17 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
"@types/underscore": "^1.10.0",
"@vue/compat": "3.5.12",
"base64url": "^3.0.1",
"bootstrap": "^4.3.1",
"bootstrap": "~4.3.1",
"bootstrap-vue": "^2.23.1",
"core-js": "^3.6.5",
"cross-env": "^7.0.3",
"intersection-observer": "^0.10.0",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"pinia": "2.2.4",
"pinia": "^2.2.4",
"regenerator-runtime": "^0.13.5",
"splunk-logging": "^0.11.1",
"underscore": "^1.13.1",
Expand All @@ -43,25 +43,25 @@
"vuex-module-decorators": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-typescript": "^14.1.3",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.29.1",
"node-sass": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.30.0",
"@vue/cli-plugin-babel": "~4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-router": "~4.3.1",
"@vue/cli-plugin-typescript": "~4.3.1",
"@vue/cli-plugin-vuex": "~4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/compiler-sfc": "3.5.12",
"@vue/eslint-config-typescript": "^5.0.2",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"sass": "^1.26.5",
"prettier": "^1.19.1",
"webpack": "^5.0.0",
"sass-loader": "^16.0.2",
"ts-loader": "^8.0.10",
"tslib": "^1.11.1",
"typescript": "5.6.3",
"@vue/compiler-sfc": "3.5.12",
"vue-template-compiler": "2.6.11"
"typescript": "5.6.3"
},
"eslintConfig": {
"root": true,
Expand Down
32 changes: 16 additions & 16 deletions web/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@ module.exports = {
}
]
}
// },
// chainWebpack: config => {
// config.resolve.alias.set('vue', '@vue/compat')
},
chainWebpack: (config) => {
config.resolve.alias.set('vue', '@vue/compat')

// config.module
// .rule('vue')
// .use('vue-loader')
// .tap(options => {
// return {
// ...options,
// compilerOptions: {
// compatConfig: {
// MODE: 2
// }
// }
// }
// })
config.module
.rule('vue')
.use('vue-loader')
.tap((options) => {
return {
...options,
compilerOptions: {
compatConfig: {
MODE: 2
}
}
}
})
}
};

0 comments on commit 7be233a

Please sign in to comment.