[WEB-1116] chore: live server code splitting (#5508)

* chore: live server code splitting

* chore: update import paths

* chore: update bebel path alias

* fix: document types type

* chore: updated error messages
This commit is contained in:
Aaryan Khandelwal 2024-09-03 17:03:50 +05:30 committed by GitHub
parent 1ef535af7b
commit 5840b40d96
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 189 additions and 23 deletions

23
live/.babelrc Normal file
View file

@ -0,0 +1,23 @@
{
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-typescript"
],
"plugins": [
[
"module-resolver",
{
"root": ["./src"],
"alias": {
"@/core": "./src/core",
"@/plane-live": "./src/ce"
}
}
]
]
}