From 2473b2552047bab983c65526cd1f496dce6b2674 Mon Sep 17 00:00:00 2001 From: Z User Date: Wed, 11 Feb 2026 20:41:05 +0000 Subject: [PATCH] Add database and update tsconfig --- db/custom.db | Bin 0 -> 24576 bytes tsconfig.json | 24 +++++++++++++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) create mode 100644 db/custom.db diff --git a/db/custom.db b/db/custom.db new file mode 100644 index 0000000000000000000000000000000000000000..fa70c8192488df70b4261392a5bee58de70bf412 GIT binary patch literal 24576 zcmeI%OKaOO0Kjp(d2|HQ_7XyG!k0Br24%-y<}@0FIZm3|(6WPZ7nPbhk0lQ5aoXcc z>>KU2&$8Q&lN^UF9Ubg4SojO1NU|hLKPd;{i*ql@l(?DB$8jbeTL+eHTTg_rEUTnr zRmXKOQQC6keQ9WK;7QsX#DqnGN9DOJyg(hZ~t{qA`vMc41hOW|y`b41@?)j3B_ z-rH$?I4Hn*`mS{C&8ya5$8H5SgbJf!iAtotLxGy`5{V zhvjPXv|(HME-YT9`cfO|$xQQdWSF88lUCk8w{zEzhqnDi z*6n3o2q1s}0tg_000IagfB*srAr*0Jmk&h5!Hn literal 0 HcmV?d00001 diff --git a/tsconfig.json b/tsconfig.json index 803285e..8a6e4f3 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { "compilerOptions": { "target": "ES2017", - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "strict": true, @@ -12,7 +16,7 @@ "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "preserve", + "jsx": "react-jsx", "incremental": true, "plugins": [ { @@ -20,9 +24,19 @@ } ], "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] }