Skip to content

Commit 55642f7

Browse files
authored
build(ts): 4.7.3 and config update (#6)
1 parent edadf6e commit 55642f7

File tree

3 files changed

+6
-3448
lines changed

3 files changed

+6
-3448
lines changed

package.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-module-mock",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "typescript cjs and esm module library mockup",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",
@@ -32,15 +32,8 @@
3232
"license": "APACHE-2.0",
3333
"dependencies": {},
3434
"devDependencies": {
35-
"@babel/core": "^7.17.10",
36-
"@babel/plugin-proposal-class-properties": "^7.16.7",
37-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
38-
"@babel/plugin-transform-runtime": "^7.17.10",
39-
"@babel/plugin-transform-typescript": "^7.16.8",
40-
"@babel/preset-typescript": "^7.16.7",
4135
"@rollup/plugin-babel": "^5.3.1",
4236
"@rollup/plugin-typescript": "^8.3.2",
43-
"@typechain/ethers-v5": "^10.0.0",
4437
"@types/jest": "^27",
4538
"@types/node": "^16",
4639
"@typescript/analyze-trace": "^0.9.0",
@@ -55,8 +48,7 @@
5548
"ts-jest": "^27",
5649
"ts-node": "^10.7.0",
5750
"tslib": "^2.4.0",
58-
"typechain": "^8.0.0",
59-
"typescript": "4.6.3",
51+
"typescript": "4.7.3",
6052
"typescript-eslint-language-service": "^5.0.0"
6153
}
6254
}

tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"allowSyntheticDefaultImports": false,
45
"esModuleInterop": false,
@@ -17,8 +18,9 @@
1718
"isolatedModules": true,
1819
"declaration": true,
1920
"sourceMap": false,
20-
"module": "ES2020",
21-
"moduleResolution": "node",
21+
"module": "node16",
22+
"moduleResolution": "node16",
23+
"moduleDetection": "force",
2224
"target": "ESNext",
2325
"rootDir": "./src",
2426
"outDir": "./dist",

0 commit comments

Comments
 (0)