diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-27 20:53:39 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-27 20:56:31 -0700 |
commit | dda7d0db43687eedef853525f0874016707776b3 (patch) | |
tree | 4ec42119c4c4de7cd78e44dc9ef41655732aaebb /tsconfig.json | |
parent | 4f0d63dba58fc2e65e9a378a6541f3176cf00440 (diff) | |
download | pengueno-dda7d0db43687eedef853525f0874016707776b3.tar.gz pengueno-dda7d0db43687eedef853525f0874016707776b3.zip |
Fixes ESM stuff
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 9aa2f58..f4a9c33 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "target": "ES2022", "module": "CommonJS", "baseUrl": ".", + "rootDir": "lib", "outDir": "./dist", "declaration": true, "moduleResolution": "node", @@ -19,7 +20,7 @@ "noFallthroughCasesInSwitch": true, "lib": ["ES2022"], "paths": { - "@emprespresso/pengueno": ["./lib/index.ts"] + "@emprespresso/pengueno": ["./lib/index.js"] } }, "include": ["lib/**/*.ts", "lib/**/*.js"], |