14 lines
298 B
JSON
14 lines
298 B
JSON
{
|
|
"extends": "@acme/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"lib": ["ES2022", "dom", "dom.iterable"],
|
|
"jsx": "preserve",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"plugins": [{ "name": "next" }]
|
|
},
|
|
"include": [".", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|