mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00: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"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|