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/.gitignore
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

45 lines
622 B
Plaintext

# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out
# Node
/node_modules
npm-debug.log
yarn-error.log
# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/mcp.json
.history/*
# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings
__screenshots__/
# System files
.DS_Store
Thumbs.db