Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion tsconfig-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
"lib": ["ES2017"],
"declaration": true,
"skipLibCheck": true,
"isolatedModules": true
"isolatedModules": true,
"paths": {
"@native-html/transient-render-engine": [
"./packages/transient-render-engine/src"
],
"@native-html/css-processor": ["./packages/css-processor/src"]
}
Comment on lines +9 to +14
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DorianMazur Can we scope this out of the PR? You should be fine as soon as you build each dependency manually. Since it is not a blocker, I suggest we address this in a separate PR; and discuss it as a single topic.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, I will remove it today.

}
}