This commit updates project configuration files: - tsconfig.json: Updated TypeScript compiler configuration with improved module resolution, strict type checking settings, and output directory configurations - tailwind.config.ts: Updated Tailwind CSS configuration with custom theme colors, typography settings, and responsive design breakpoints for the application styling
22 lines
531 B
JSON
22 lines
531 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "none",
|
|
"lib": ["ES2020", "DOM"],
|
|
"outDir": "./web/static",
|
|
"rootDir": "./web/src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["web/src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|