Files
plane/admin/tsconfig.json
sriram veeraghanta 1d763bbf34 fix: build errors in web and admin strict null handling (#3221)
* fix: build errors in web and admin strict null handling

* chore: formatting tsconfig
2025-05-19 17:35:07 +05:30

22 lines
498 B
JSON

{
"extends": "@plane/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"@/*": ["core/*"],
"@/public/*": ["public/*"],
"@/plane-admin/*": ["ee/*"],
"@/styles/*": ["styles/*"],
"@/ce/*": ["ce/*"]
},
"strictNullChecks": true
},
"include": ["next-env.d.ts", "next.config.js", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}