This commit is contained in:
taskylizard 2023-10-31 00:02:25 +05:30
parent fe7f5bb663
commit 3f1373eb7a
No known key found for this signature in database
GPG key ID: 5CABA3D642DDC497
9 changed files with 2867 additions and 181 deletions

20
tsconfig.json Normal file
View file

@ -0,0 +1,20 @@
{
"compilerOptions": {
"baseUrl": ".",
"module": "esnext",
"target": "esnext",
"lib": ["DOM", "ESNext"],
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": ["vite/client", "vite-plugin-pwa/vanillajs", "vitepress"]
},
"include": ["./*.ts", "./.vitepress/**/*.ts"],
"exclude": ["dist", "node_modules"]
}