aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMax Nanis2025-06-23 17:20:31 +0700
committerMax Nanis2025-06-23 17:20:31 +0700
commit8138549f64403874eb7c7ddfbde1cc2cc2c03695 (patch)
treeff16ff5bf7b0a5454fd181d178a6f799b9141d64 /tsconfig.json
parent5e8b1b89bfffd0202bc6c5f64aac943053d79d32 (diff)
downloadpanel-ui-8138549f64403874eb7c7ddfbde1cc2cc2c03695.tar.gz
panel-ui-8138549f64403874eb7c7ddfbde1cc2cc2c03695.zip
Typescript validation finally passes.
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json19
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/*"
+ ]
}
}
}