feat: config files, readme

This commit is contained in:
2026-07-04 21:32:03 +02:00
parent d1620f7fdb
commit c3313223ef
13 changed files with 311 additions and 16 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023"],
"module": "esnext",
"types": ["vitest/importMeta", "node"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"emitDeclarationOnly": true,
"declaration": true,
"jsx": "react-jsx",
/* Linting */
"noUnusedLocals": false,
"erasableSyntaxOnly": true,
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/config.ts"]
}