Skip to content

Commit

Permalink
fix(frontend): angular example
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishi Raj Jain authored Aug 8, 2023
1 parent 17602fb commit 0656a0a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
12 changes: 7 additions & 5 deletions frontend/examples/angular/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "es2020",
"lib": [
"es2020",
"dom"
]
"module": "ES2022",
"useDefineForClassFields": false,
"lib": ["ES2022", "dom"],
"skipLibCheck": true,
"paths": {
"@angular/*": ["../../node_modules/@angular/*"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"start": "turbo run start",
"build:elements": "turbo build --filter=./frontend-sdk --filter=./elements",
"build:elements:dev": "turbo build:dev --filter=./elements"
},
Expand Down
4 changes: 4 additions & 0 deletions frontend/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"start": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
Expand Down

0 comments on commit 0656a0a

Please sign in to comment.