summaryrefslogtreecommitdiff
path: root/.ci/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-27 22:16:23 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-27 22:19:10 -0700
commit235a4a4e098dfbe3f75857e2b462bef2709d6761 (patch)
tree0ad94d4251fa513a48e27bef82b552da73ab5980 /.ci/tsconfig.json
parentdda7d0db43687eedef853525f0874016707776b3 (diff)
downloadpengueno-235a4a4e098dfbe3f75857e2b462bef2709d6761.tar.gz
pengueno-235a4a4e098dfbe3f75857e2b462bef2709d6761.zip
Adds ci
Diffstat (limited to '.ci/tsconfig.json')
-rw-r--r--.ci/tsconfig.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json
new file mode 100644
index 0000000..39cb802
--- /dev/null
+++ b/.ci/tsconfig.json
@@ -0,0 +1,17 @@
+{
+ "extends": "../tsconfig.json",
+ "compilerOptions": {
+ "module": "ESNext",
+ "outDir": "./dist",
+ "rootDir": "./",
+ "composite": true,
+ "declaration": true,
+ "declarationMap": true,
+ "sourceMap": true,
+ "noEmit": false
+ },
+ "include": ["**/*.ts"],
+ "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
+ "references": []
+}
+