16 lines
341 B
JSON
16 lines
341 B
JSON
{
|
|
"extends": "@kan/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"]
|
|
}
|