15 lines
390 B
JSON
15 lines
390 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"plugins": [{ "name": "next" }]
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|