Added Prettier&Linter

This commit is contained in:
2025-11-12 12:58:15 +01:00
parent b18d8d6477
commit 9cecb48d34
13 changed files with 1565 additions and 50 deletions

View File

@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -23,12 +19,8 @@
}
],
"paths": {
"@/*": [
"./src/*"
],
"~/*": [
"./*"
]
"@/*": ["./src/*"],
"~/*": ["./*"]
}
},
"include": [
@@ -39,7 +31,5 @@
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": [
"node_modules"
]
"exclude": ["node_modules"]
}