From 8138549f64403874eb7c7ddfbde1cc2cc2c03695 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Mon, 23 Jun 2025 17:20:31 +0700 Subject: Typescript validation finally passes. --- tsconfig.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index fec8c8e..bdddda8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,26 @@ { + // Core TypeScript compiler configuration. + // -- Central to type checking, used by Vite, Jest, and ESLint. + "exclude": [ + "dist", + "src/api/" + ], + "files": [], "references": [ - { "path": "./tsconfig.app.json" }, - { "path": "./tsconfig.node.json" } + { + "path": "./tsconfig.build.json" + }, + { + "path": "./tsconfig.node.json" + } ], "compilerOptions": { "baseUrl": ".", "paths": { - "@/*": ["./src/*"] + "@/*": [ + "./src/*" + ] } } } -- cgit v1.2.3