mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 03:47:54 +01:00
18 lines
476 B
JSON
18 lines
476 B
JSON
{
|
|
"extends": "@plane/typescript-config/react-library.json",
|
|
"compilerOptions": {
|
|
"exactOptionalPropertyTypes": false,
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"paths": {
|
|
"src/*": ["./src/*"],
|
|
"@/*": ["./src/core/*"],
|
|
"@/plane-editor/*": ["./src/ce/*"],
|
|
"@/styles/*": ["./src/styles/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "index.d.ts"],
|
|
"exclude": ["dist", "build", "node_modules"]
|
|
}
|