First Commit Test

This commit is contained in:
2023-04-11 15:08:56 +02:00
commit 4079fade0a
24 changed files with 11503 additions and 0 deletions

30
.eslintrc Normal file
View File

@ -0,0 +1,30 @@
{
"root": true,
"env": {
"browser": true,
"node": true
},
"extends": [
"@nuxtjs/eslint-config-typescript"
],
"overrides": [
{
"files": [
"./server/**/*.ts"
],
"rules": {
"no-console": [
"error",
{
"allow": [
"info",
"warn",
"trace",
"error"
]
}
]
}
}
]
}