summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-27 20:53:39 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-27 20:56:31 -0700
commitdda7d0db43687eedef853525f0874016707776b3 (patch)
tree4ec42119c4c4de7cd78e44dc9ef41655732aaebb /tsconfig.json
parent4f0d63dba58fc2e65e9a378a6541f3176cf00440 (diff)
downloadpengueno-dda7d0db43687eedef853525f0874016707776b3.tar.gz
pengueno-dda7d0db43687eedef853525f0874016707776b3.zip
Fixes ESM stuff
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json3
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"],