Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
huan committed Oct 23, 2021
1 parent db94388 commit da273f6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The unit test load tsconfig schema from [JSON Schema Store](http://schemastore.o
### master
### v0.20
### v1.0 (Oct 24, 2021)
#### Major changes
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chatie/tsconfig",
"version": "0.21.2",
"version": "1.0.0",
"description": "tsconfig.json inheritance via Node.js packages",
"tsconfig": "tsconfig.json",
"type": "module",
Expand All @@ -12,8 +12,7 @@
},
"engines": {
"node": ">=16",
"npm": ">=7",
"typescript": ">=4.5"
"npm": ">=7"
},
"scripts": {
"dist": "echo dist",
Expand Down Expand Up @@ -68,7 +67,7 @@
"ts-node": "^10.3.0",
"tstest": "^0.7.3",
"type-fest": "^2.5.0",
"typescript": "^4.5.0-beta"
"typescript": "^4.4.4"
},
"git": {
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@

// ES Modules: https://www.typescriptlang.org/tsconfig#module
// https://devblogs.microsoft.com/typescript/announcing-typescript-4-5-beta/#esm-nodejs
"module": "nodenext",
// "module": "nodenext",
"module": "esnext",

// https://www.typescriptlang.org/tsconfig#moduleResolution
"moduleResolution": "nodenext",
// "moduleResolution": "nodenext",
"moduleResolution": "node",

/**
* Type import/export checkings
Expand Down

0 comments on commit da273f6

Please sign in to comment.