Skip to content

Commit eee7b81

Browse files
committedNov 20, 2020
Require Node.js 10
1 parent a1ea5cc commit eee7b81

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed
 

‎license

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
3+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"author": {
88
"name": "Sindre Sorhus",
99
"email": "sindresorhus@gmail.com",
10-
"url": "sindresorhus.com"
10+
"url": "https://sindresorhus.com"
1111
},
1212
"main": "tsconfig.json",
1313
"engines": {
14-
"node": ">=8"
14+
"node": ">=10"
1515
},
1616
"files": [
1717
"tsconfig.json"

‎readme.md

-7
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
> Shared [TypeScript config](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) for my projects
44
5-
65
## Install
76

87
```
98
$ npm install --save-dev @sindresorhus/tsconfig
109
```
1110

12-
1311
## Usage
1412

1513
`tsconfig.json`
@@ -26,8 +24,3 @@ $ npm install --save-dev @sindresorhus/tsconfig
2624
}
2725
}
2826
```
29-
30-
31-
## License
32-
33-
MIT © [Sindre Sorhus](https://sindresorhus.com)

‎tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Disabled because of https://github.com/Microsoft/TypeScript/issues/29172
44
// "outDir": "dist",
55

6-
"target": "es2017", // Node.js 8
6+
"target": "es2018", // Node.js 10
77
"module": "commonjs",
88
"moduleResolution": "node",
99
"resolveJsonModule": true,

0 commit comments

Comments
 (0)
Please sign in to comment.