diff options
| author | Max Nanis | 2025-06-23 17:20:31 +0700 |
|---|---|---|
| committer | Max Nanis | 2025-06-23 17:20:31 +0700 |
| commit | 8138549f64403874eb7c7ddfbde1cc2cc2c03695 (patch) | |
| tree | ff16ff5bf7b0a5454fd181d178a6f799b9141d64 /tsconfig.json | |
| parent | 5e8b1b89bfffd0202bc6c5f64aac943053d79d32 (diff) | |
| download | panel-ui-8138549f64403874eb7c7ddfbde1cc2cc2c03695.tar.gz panel-ui-8138549f64403874eb7c7ddfbde1cc2cc2c03695.zip | |
Typescript validation finally passes.
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 19 |
1 files changed, 16 insertions, 3 deletions
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/*" + ] } } } |
