mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* fix: lint config package updates * fix: tsconfig changes * fix: lint config setup * fix: lint errors and adding new rules * fix: lint errors * fix: ui and editor lints * fix: build error * fix: editor tsconfig * fix: lint errors * fix: types fixes --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
20 lines
463 B
JSON
20 lines
463 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2015", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"target": "ES6",
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/core/*"],
|
|
"@/styles/*": ["src/styles/*"],
|
|
"@/plane-editor/*": ["src/ce/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*", "index.d.ts"],
|
|
"exclude": ["dist", "build", "node_modules"]
|
|
}
|