Skip to content

Commit 1cc85e3

Browse files
authoredDec 11, 2020
chore: make tsconfig valid json (#162)
You can't have trailing commas like this in JSON. Fixes error `Unexpected token } in JSON at position 458` when trying to run `npm run build`.
1 parent 967b845 commit 1cc85e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"noEmit": true,
1515
"forceConsistentCasingInFileNames": true
1616
},
17-
"include": ["src/index.d.ts", "test/**/*.spec.js", "test/**/*.spec.ts"],
17+
"include": ["src/index.d.ts", "test/**/*.spec.js", "test/**/*.spec.ts"]
1818
}

0 commit comments

Comments
 (0)