16 lines
374 B
JSON
16 lines
374 B
JSON
{
|
|
"extends": "@ufb/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"lib": ["ES2022", "dom", "dom.iterable"],
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"plugins": [{ "name": "next" }],
|
|
"module": "esnext"
|
|
},
|
|
"include": [".", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", "./*.js", "./*.mjs", "coverage"]
|
|
}
|