Initial Commit

This commit is contained in:
fro1991
2025-02-13 12:19:18 +07:00
commit 92b1d5475c
1819 changed files with 154611 additions and 0 deletions

33
tsconfig.json Normal file
View File

@ -0,0 +1,33 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./",
/* Path alias */
"paths": {
"@/*": ["./src/*"]
},
"allowSyntheticDefaultImports": true
},
"include": ["./src"],
"references": [{ "path": "./tsconfig.node.json" }]
}