26 lines
414 B
JSON
26 lines
414 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"jsx": "preserve"
|
|
},
|
|
"include": [
|
|
"next.config.ts",
|
|
"src",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".next"
|
|
]
|
|
}
|