first commit

This commit is contained in:
Hydra
2024-04-14 04:20:27 +01:00
commit 992ec5ab49
145 changed files with 37479 additions and 0 deletions

26
tsconfig.json Normal file
View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "ES6",
"allowJs": true,
"module": "commonjs",
"jsx": "react-jsx",
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"paths": {
"*": ["node_modules/*"],
"@main/*": ["src/main/*"],
"@renderer/*": ["src/renderer/*"],
"@types": ["src/types/index.ts"],
"@locales": ["src/locales/index.ts"]
}
},
"include": ["src/**/*"]
}