This repository has been archived on 2026-02-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-first-angular-app/tsconfig.app.json
TheDreWen 1dd564119e feat: initialize Angular application with basic structure and configuration
- Add app configuration in app.config.ts
- Create main application component with routing support
- Implement basic HTML structure in app.html
- Add global styles and Tailwind CSS integration
- Set up routing with an empty routes array
- Create unit tests for the app component
- Add TypeScript configuration files for the application and tests
- Include index.html as the entry point for the application
- Bootstrap the application in main.ts
2026-02-03 11:04:52 +01:00

16 lines
429 B
JSON

/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": []
},
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
]
}