mirror of
https://github.com/makeplane/plane.git
synced 2025-12-15 19:37:51 +01:00
* fix: esm module imports for live and editor * fix: convert all pacakges to export esm and cjs build * fix: auto export * fix: translation files formatting * fix: convert eslint files to cjs files for supporting current config * fix: code uuid package upgrade --------- Co-authored-by: Aaron Reisman <aaron.reisman@plane.so>
24 lines
607 B
JSON
24 lines
607 B
JSON
{
|
|
"extends": "@plane/typescript-config/react-library.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2022", "DOM"],
|
|
"module": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/core/*"],
|
|
"@/styles/*": ["./src/styles/*"],
|
|
"@/plane-editor/*": ["./src/ce/*"]
|
|
},
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*", "index.d.ts"],
|
|
"exclude": ["dist", "build", "node_modules"]
|
|
}
|