24 lines
469 B
JSON
24 lines
469 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"incremental": true,
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next-dev/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "scripts"]
|
|
}
|