Skip to content

Commit

Permalink
fix(create-analog): add skipLibCheck to template generator
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Jun 14, 2023
1 parent ddbabcd commit 6e11a2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/create-analog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-analog",
"version": "0.2.29",
"version": "0.2.30",
"type": "module",
"license": "MIT",
"author": "Brandon Roberts",
Expand Down
3 changes: 2 additions & 1 deletion packages/create-analog/template-angular-v15/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "dom"],
"useDefineForClassFields": false
"useDefineForClassFields": false,
"skipLibCheck": true
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down
3 changes: 2 additions & 1 deletion packages/create-analog/template-angular-v16/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "dom"],
"useDefineForClassFields": false
"useDefineForClassFields": false,
"skipLibCheck": true
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down

0 comments on commit 6e11a2a

Please sign in to comment.