mirror of
https://github.com/makeplane/plane.git
synced 2026-01-25 07:38:46 -06:00
20 lines
469 B
JSON
20 lines
469 B
JSON
{
|
|
"extends": "@plane/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"exactOptionalPropertyTypes": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitOverride": false,
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/plane-live/*": ["./src/ce/*"]
|
|
},
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|