Eve/tsconfig.json
Danny Morabito 9893945f55
Enhance app with multi-CCN support and improved UX
Features:

 Add support for multiple CCNs
🔍 Implement sidebar hiding functionality
🎨 Revamp navigation system for better flow
🖌️ Replace icons with custom-designed assets and improved naming
🚀 Streamline initial setup process
📝 Refine terminology (e.g., "forum thread" → "topic")
🛠️ Enhance forum usability and interaction
2025-04-11 22:26:00 +02:00

37 lines
1 KiB
JSON

{
"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/*"],
"@assets/*": ["./src/assets/*"],
}
},
"include": ["./src/**/*"]
}