mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
* chore: upgrade to latest version of turbo repo * fix: tsconfig changes * chore: adding format script to package json * fix: formatting of files
21 lines
472 B
JSON
21 lines
472 B
JSON
{
|
|
"extends": "@plane/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/plane-admin/*": ["ce/*"],
|
|
"@/styles/*": ["styles/*"]
|
|
},
|
|
"strictNullChecks": true
|
|
},
|
|
"include": ["next-env.d.ts", "next.config.js", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|