Initial version

This commit is contained in:
Danny Morabito 2025-02-20 19:28:48 +01:00
commit da9428f059
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
49 changed files with 5506 additions and 0 deletions

35
tsconfig.json Normal file
View file

@ -0,0 +1,35 @@
{
"compilerOptions": {
"target": "ES2021",
"module": "ES2022",
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"inlineSources": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"useDefineForClassFields": false,
"skipLibCheck": true,
"paths": {
"@/*": ["./src/*"],
"@utils/*": ["./src/utils/*"],
"@routes/*": ["./src/routes/*"],
"@styles/*": ["./src/styles/*"],
"@components/*": ["./src/components/*"],
"@widgets/*": ["./src/components/Widgets/*"]
}
}
}