diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2025-08-17 23:50:24 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2025-08-17 23:53:38 -0700 |
| commit | 1a4fc9535a89b58e8b67c8996ade0b833116af3a (patch) | |
| tree | d16f3129d7bb69f204bba8422e909354195a0042 /.ci/tsconfig.json | |
| parent | 157dc327e8fe63541b517cfbeeaf202a3e8553a5 (diff) | |
| download | canary-1a4fc9535a89b58e8b67c8996ade0b833116af3a.tar.gz canary-1a4fc9535a89b58e8b67c8996ade0b833116af3a.zip | |
Move to pengueno.
Diffstat (limited to '.ci/tsconfig.json')
| -rw-r--r-- | .ci/tsconfig.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json new file mode 100644 index 0000000..a718375 --- /dev/null +++ b/.ci/tsconfig.json @@ -0,0 +1,17 @@ +{ + "include": ["**/*.ts"], + "compilerOptions": { + "module": "ESNext", + "target": "es2018", + "outDir": "./dist", + "rootDir": "./", + "composite": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "noEmit": false, + "moduleResolution": "node" + }, + "exclude": ["node_modules", "dist", "**/*.d.ts"], + "references": [] +} |
