diff options
| author | MohamedBassem <me@mbassem.com> | 2024-04-24 11:37:35 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-04-24 12:21:55 +0100 |
| commit | 3352a3ea393849550573deff8d774ba6bf149471 (patch) | |
| tree | a7d78db4fadbe7123c7d5045f5a537965382b84a /apps/cli/tsconfig.json | |
| parent | af0cf9c1ee10901ab91b04a1d73afdcb2191a88f (diff) | |
| download | karakeep-3352a3ea393849550573deff8d774ba6bf149471.tar.zst | |
build(cli): Prepare for publishing CLI to npm
Diffstat (limited to 'apps/cli/tsconfig.json')
| -rw-r--r-- | apps/cli/tsconfig.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/cli/tsconfig.json b/apps/cli/tsconfig.json index dc71844c..43577686 100644 --- a/apps/cli/tsconfig.json +++ b/apps/cli/tsconfig.json @@ -1,11 +1,14 @@ { "$schema": "https://json.schemastore.org/tsconfig", "extends": "@hoarder/tsconfig/node.json", - "include": ["**/*.ts"], - "exclude": ["node_modules"], + "include": ["src", "vite.config.mts"], + "exclude": ["node_modules", "dist"], "compilerOptions": { "baseUrl": ".", "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json", "strictNullChecks": true, + "paths": { + "@/*": ["./src/*"] + } } } |
