* feat: live server refactor fix: code refactor fix: lint errors * fix: code refactor * fix: controller dependency fixes * fix: cors setup * fix: env variable validation * fix: trime cors orgins * fix: extensions hoscuspos server * fix: remove unused utils * chore: code refactor * chore: code refactor * fix: code refactor * fix: code refactor * fix: adding teamspace service * Add strong typing to improve type safety * fix: remove unused packages * fix: live server explicit dependency while setting up routes * fix: remove unused deps and made initialization explicit * fix: database types and reuse functions * fix: all the code migrated to new format * fix: sub page fetching errors * fix: types fixed * fix: all typescript errors resolved * fix: auth and stateless types * fix: parity with ce * fix: build and dev scripts * fix: build scripts * fix: registerControllers instance removed from silo * fix: broken lock file * fix: lint skip * fix: api requests to wrong endpoint * fix: title sync extension usage --------- Co-authored-by: Palanikannan M <[email protected]>
28 lines
705 B
JSON
28 lines
705 B
JSON
{
|
|
"extends": "@plane/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"module": "ES2015",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2015"],
|
|
"target": "ES2015",
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/plane-live/*": ["./src/ee/*"]
|
|
},
|
|
"removeComments": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"sourceRoot": "/",
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts", "tsdown.config.ts"],
|
|
"exclude": ["./dist", "./build", "./node_modules", "**/*.d.ts"]
|
|
}
|