- 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
43 lines
978 B
JSON
43 lines
978 B
JSON
{
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "start",
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"pattern": "$tsc",
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": {
|
|
"regexp": "Changes detected"
|
|
},
|
|
"endsPattern": {
|
|
"regexp": "bundle generation (complete|failed)"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "test",
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"pattern": "$tsc",
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": {
|
|
"regexp": "Changes detected"
|
|
},
|
|
"endsPattern": {
|
|
"regexp": "bundle generation (complete|failed)"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|