summaryrefslogtreecommitdiff
path: root/.ci/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-01 12:38:35 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-01 12:38:35 -0700
commitb2ab472a677a22f8300b5beb061f426ad35e2a6a (patch)
tree1ca4465bf6322b514ad5cf0466b7953dedbcb719 /.ci/tsconfig.json
parent684d3768920786440278fd3745c7d6a69cb34a8b (diff)
downloadci-b2ab472a677a22f8300b5beb061f426ad35e2a6a.tar.gz
ci-b2ab472a677a22f8300b5beb061f426ad35e2a6a.zip
Build local ci exec
Diffstat (limited to '.ci/tsconfig.json')
-rw-r--r--.ci/tsconfig.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json
new file mode 100644
index 0000000..58e9147
--- /dev/null
+++ b/.ci/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "extends": "../tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./dist",
+ "rootDir": "./",
+ "composite": true,
+ "declaration": true,
+ "declarationMap": true,
+ "sourceMap": true,
+ "noEmit": false
+ },
+ "include": ["**/*.ts"],
+ "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
+ "references": [{ "path": "../u" }, { "path": "../model" }]
+}