first commit

This commit is contained in:
priyanshuvish
2025-07-11 16:54:37 +05:30
parent 15e50f1dec
commit 8a5bb95a0e
221 changed files with 109527 additions and 0 deletions

34
tsconfig.json Normal file
View File

@@ -0,0 +1,34 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"allowJs": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false,
/* Path mapping */
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
// "include": ["**/*.ts", "**/*.tsx", "postcss.config.mjs", "tailwind.config.js"],
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["vite.config.ts", "postcss.config.js", "tailwind.config.js"],
"references": [{ "path": "./tsconfig.node.json" }]
}