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
21 lines
482 B
JSON
21 lines
482 B
JSON
{
|
|
"extends": "tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2015"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/core/*": ["./src/core/*"],
|
|
"@/plane-live/*": ["./src/ce/*"]
|
|
},
|
|
"removeComments": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["./dist", "./build", "./node_modules"]
|
|
}
|