mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
19 lines
352 B
JSON
19 lines
352 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": {
|
||
|
|
"@/*": ["*"]
|
||
|
|
},
|
||
|
|
"plugins": [
|
||
|
|
{
|
||
|
|
"name": "next"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|