mirror of
https://github.com/karakeep-app/karakeep.git
synced 2026-02-28 18:25:55 +01:00
16 lines
399 B
JSON
16 lines
399 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@karakeep/tsconfig/node.json",
|
|
"include": ["src", "vite.config.mts"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
|
|
"strictNullChecks": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["vite/client"]
|
|
}
|
|
}
|