Skip to content

Commit

Permalink
HARMONY-1872: Add skipLibCheck ts configuration to deal with services…
Browse files Browse the repository at this point in the history
… build issue in cicd.
  • Loading branch information
ygliuvt committed Dec 16, 2024
1 parent 5575723 commit 5277a72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion services/harmony/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"allowJs": true,
"noImplicitAny": false,
"sourceMap": true,
"outDir": "built"
"outDir": "built",
"skipLibCheck": true // Optional: Ignores type definition errors in node_modules
}
}
3 changes: 2 additions & 1 deletion services/harmony/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "./tsconfig.base.json",
"compilerOptions": {
"resolveJsonModule": true,
"skipLibCheck": true // Optional: Ignores type definition errors in node_modules
},
"include": [
"./app/**/*",
Expand All @@ -10,4 +11,4 @@
"exclude": [
"./built/**/*"
]
}
}

0 comments on commit 5277a72

Please sign in to comment.