mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e3ebb9b61c
* chore: bulk operations folder restructuring. * fix: build errors --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
24 lines
524 B
JSON
24 lines
524 B
JSON
{
|
|
"extends": "tsconfig/nextjs.json",
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@/*": ["core/*"],
|
|
"@/helpers/*": ["helpers/*"],
|
|
"@/public/*": ["public/*"],
|
|
"@/styles/*": ["styles/*"],
|
|
"@/plane-web/*": ["ce/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true
|
|
}
|
|
}
|