- tsconfig: drop TS6-deprecated baseUrl; moduleResolution Node -> Bundler - eslint: migrate .eslintrc.cjs to flat config (eslint.config.mjs); add vue-eslint-parser, globals, @eslint/js; drop --ext from lint scripts - vuetify 4: theme.global.name.value = x -> theme.change(x) - drop unused watch import; rename unused status arg; remove required: true from prop that has a default
10 lines
188 B
JSON
10 lines
188 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["vite.config.mts"]
|
|
}
|