Skip to content

Commit

Permalink
refactor: enable isolatedModules compiler option (#1863)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk authored Jan 18, 2025
1 parent e9aaca3 commit 5d5b290
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/abc/reuse-tab/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ export { ReuseTabModule } from './reuse-tab.module';
export * from './reuse-tab.interfaces';
export * from './lifecycle_hooks';
export * from './reuse-tab.state';
export { REUSE_TAB_CACHED_MANAGER, ReuseTabCachedManager } from './reuse-tab.cache';
export { REUSE_TAB_CACHED_MANAGER } from './reuse-tab.cache';
export type { ReuseTabCachedManager } from './reuse-tab.cache';
export * from './provide';
1 change: 1 addition & 0 deletions src/tsconfig.site.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": ["node"],
"isolatedModules": true,
"resolveJsonModule": true,
"esModuleInterop": true
},
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"noImplicitThis": true,
"types": [
"jasmine"
],
"useDefineForClassFields": false
]
}
}

0 comments on commit 5d5b290

Please sign in to comment.