Setup: - Angular 18 standalone project with routing - TypeScript strict mode enabled - Angular Material Cyan/Orange theme configured - ESLint + Prettier for code quality - Path aliases configured (@app, @services, @models, etc.) - Environment files for dev/prod configurations Dependencies: - @angular/core@18.2.x - @angular/material@18.2.x - @angular/cdk@18.2.x - chart.js@4.4.x (prepared for graphs) - rxjs@7.8.x Closes #17
15 lines
273 B
JSON
15 lines
273 B
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/spec",
|
|
"types": [
|
|
"jasmine"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|