aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
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/*"
+ ]
}
}
}