feat: Added @nuxthq/ui module

This commit is contained in:
Xeovalyte 2023-06-04 10:26:36 +02:00
parent 795c221453
commit b25699b50b
4 changed files with 4427 additions and 158 deletions

View File

@ -1,5 +1,17 @@
{
"extends": [
"@nuxt/eslint-config"
]
"root": true,
"extends": ["eslint:recommended", "@nuxtjs/eslint-config-typescript", "plugin:tailwindcss/recommended"],
"rules": {
"vue/max-attributes-per-line": ["error", {
"singleline": {
"max": 4
},
"multiline": {
"max": 2
}
}],
"vue/multi-word-component-names": "off",
"vue/singleline-html-element-content-newline": "off",
"no-undef": "off"
}
}

View File

@ -1,6 +1,9 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
typescript: {
typeCheck: true,
}
typeCheck: true
},
modules: [
'@nuxthq/ui'
]
})

4554
webv2/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -6,16 +6,18 @@
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
"postinstall": "nuxt prepare",
"lint": "eslint ."
},
"devDependencies": {
"@nuxthq/ui": "^2.2.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^18",
"eslint": "^8.41.0",
"eslint-plugin-tailwindcss": "^3.12.1",
"nuxt": "^3.5.2"
},
"dependencies": {
"@nuxt/eslint-config": "^0.1.1",
"typescript": "^5.0.4",
"vue-tsc": "^1.6.5"
}