implemented theme management

This commit is contained in:
2026-04-15 11:15:15 +03:30
parent 9fb168e888
commit e587a7f6cc
7 changed files with 115 additions and 24 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/*"
],
"&/*": [
"./public/*"
]
"@/*": ["./src/*"],
"&/*": ["./public/*"]
}
},
"include": [
@@ -38,7 +30,5 @@
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"exclude": ["node_modules"]
}