From ace7a81cbc58da3e8001a5720e54f5a606e07dfb Mon Sep 17 00:00:00 2001 From: Sebastian Krupinski Date: Mon, 13 Jul 2026 21:35:34 -0400 Subject: [PATCH] refactor: typescript configuration Signed-off-by: Sebastian Krupinski --- tsconfig.app.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index 2078d87..e82ca25 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,19 +1,19 @@ { "extends": "../../tsconfig.app.json", - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", - "paths": { - "@/*": ["./src/*"], - "@KTXC/*": ["../../core/src/*"], - "@DocumentsManager/*": ["../documents_manager/src/*"] - } - }, "include": [ "src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "../documents_manager/src/**/*.ts", "../../core/src/**/*.ts" - ] + ], + "compilerOptions": { + "composite": true, + "paths": { + "@/*": ["./src/*"], + "@KTXC": ["../../core/src/shared/index.ts"], + "@KTXC/*": ["../../core/src/*"], + "@DocumentsManager/*": ["../documents_manager/src/*"] + } + }, }