Skip to content

Commit 4059490

Browse files
authored
Merge branch 'main' into prettier-globs
2 parents de1b0fc + f099707 commit 4059490

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/check-dist.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ jobs:
2424
- uses: actions/checkout@v2
2525

2626
- name: Set Node.js 12.x
27-
uses: actions/setup-node@v1
27+
uses: actions/setup-node@v2
2828
with:
2929
node-version: 12.x
30+
cache: npm
3031

3132
- name: Install dependencies
3233
run: npm ci

tsconfig.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"compilerOptions": {
3-
"target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
4-
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
5-
"lib": ["es6"],
6-
"outDir": "./lib" /* Redirect output structure to the directory. */,
7-
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
3+
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
4+
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
5+
"outDir": "./lib", /* Redirect output structure to the directory. */
6+
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
87
"sourceMap": true,
98
"strict": true /* Enable all strict type-checking options. */,
109
"noImplicitAny": false /* Raise error on expressions and declarations with an implied 'any' type. */,

0 commit comments

Comments
 (0)