mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
29 lines
426 B
JSON
29 lines
426 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"
|
|
}
|
|
],
|
|
"strictNullChecks": true
|
|
}
|
|
}
|