21 lines
500 B
JSON
21 lines
500 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "preserve",
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"plugins": [{ "name": "next" }],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["next-env.d.ts", "src/**/*", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|