Sybren A. Stüvel
555c935790
Replace the Vue v2 webapp with a Vue v3 one, and embed the OpenAPI client in the webapp itself (instead of being its own npm project). - Vue v2.x -> v3.x - Tabulator v4.x -> v5.1 - Moment JS -> replaced with Luxon JS - Vue CLI/UI -> replaced with Vite
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
/* eslint-env node */
|
|
require("@rushstack/eslint-patch/modern-module-resolution");
|
|
|
|
module.exports = {
|
|
"root": true,
|
|
"extends": [
|
|
"plugin:vue/vue3-essential",
|
|
"eslint:recommended",
|
|
"@vue/eslint-config-prettier"
|
|
],
|
|
"env": {
|
|
"vue/setup-compiler-macros": true
|
|
}
|
|
}
|