init gitbiome

This commit is contained in:
2024-07-12 10:27:28 +02:00
commit f070ffe97d
41 changed files with 4328 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
{
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"checkJs": true,
/* Bundled projects */
"lib": ["dom", "dom.iterable", "ES2022"],
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "preserve",
"plugins": [{ "name": "next" }],
"incremental": true,
/* Path Aliases */
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
}
},
"include": [
".eslintrc.js",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.js",
".next/types/**/*.ts",
"next.config.mjs",
"postcss.config.mjs",
"tailwind.config.ts",
],
"exclude": ["node_modules"]
}