mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 01:06:25 +02:00
24 lines
416 B
JSON
24 lines
416 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||
|
|
"extends": "./base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"plugins": [
|
||
|
|
{
|
||
|
|
"name": "next"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"],
|
||
|
|
"@katanemo/ui": ["../../packages/ui/src"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"next-env.d.ts",
|
||
|
|
"**/*.ts",
|
||
|
|
"**/*.tsx",
|
||
|
|
".next/types/**/*.ts",
|
||
|
|
".next/dev/types/**/*.ts",
|
||
|
|
"**/*.mts"
|
||
|
|
]
|
||
|
|
}
|