0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-03 21:48:55 -05:00

fix(core): remove ESM declaration (#687)

This commit is contained in:
Gao Sun 2022-04-28 12:18:03 +08:00 committed by GitHub
parent b601fb45ce
commit e61dba90a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 9 deletions

View file

@ -5,7 +5,6 @@
"main": "build/index.js", "main": "build/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0", "license": "MPL-2.0",
"type": "module",
"private": true, "private": true,
"scripts": { "scripts": {
"preinstall": "npx only-allow pnpm", "preinstall": "npx only-allow pnpm",

View file

@ -7,7 +7,6 @@
"@/*": [ "@/*": [
"src/*" "src/*"
] ]
}, }
"module": "ESNext"
} }
} }

View file

@ -10,10 +10,5 @@
"include": [ "include": [
"src", "src",
"jest.*.ts" "jest.*.ts"
], ]
"ts-node": {
"moduleTypes": {
"jest.config.ts": "cjs"
}
}
} }