Authentication?

Voor een gegeven definitie van...
This commit is contained in:
2025-06-25 16:38:22 +02:00
parent e7ca11d1bc
commit bfa1c7879b
7 changed files with 128 additions and 20 deletions
+11 -15
View File
@@ -1,12 +1,15 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"lib": ["dom", "dom.iterable", "esnext"],
// Make local stuff available for non-relative import
"baseUrl": "./",
"paths": {
"muzak/config/*": ["./src/config/*"]
},
"allowJs": false,
"skipLibCheck": true,
"strict": false,
"noEmit": true,
@@ -23,13 +26,6 @@
}
]
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}