Skip to content

Commit

Permalink
Merge pull request #82 from artemnih/fix
Browse files Browse the repository at this point in the history
Fix tsconfig
  • Loading branch information
artemnih committed Oct 13, 2023
2 parents e2c4d10 + f35f9cc commit 5019ff9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 1 addition & 4 deletions projects/ngx-explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-explorer",
"version": "4.0.0",
"version": "2.0.0",
"peerDependencies": {
"@angular/common": ">= 16.0.0",
"@angular/core": ">= 16.0.0",
Expand Down Expand Up @@ -47,8 +47,5 @@
"esm": "./esm2022/ngx-explorer.mjs",
"default": "./fesm2022/ngx-explorer.mjs"
}
},
"scripts": {
"prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
}
}
1 change: 1 addition & 0 deletions projects/ngx-explorer/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
]
},
"angularCompilerOptions": {
"compilationMode": "partial",
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true,
Expand Down
3 changes: 2 additions & 1 deletion projects/ngx-explorer/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{
"extends": "./tsconfig.lib.json",
"angularCompilerOptions": {
"compilationMode": "partial"
"compilationMode": "partial",
"enableIvy": false
}
}

0 comments on commit 5019ff9

Please sign in to comment.