Files
karakeep-mirror/apps/cli/tsconfig.json
2025-04-12 19:37:40 +01:00

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"]
}
}