mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
* chore: live server code splitting * chore: update import paths * chore: update bebel path alias * fix: document types type * chore: updated error messages
24 lines
335 B
Plaintext
24 lines
335 B
Plaintext
{
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"modules": false
|
|
}
|
|
],
|
|
"@babel/preset-typescript"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"module-resolver",
|
|
{
|
|
"root": ["./src"],
|
|
"alias": {
|
|
"@/core": "./src/core",
|
|
"@/plane-live": "./src/ce"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|