(- meta fix typo) Lowercase tsconfig values

This commit is contained in:
ELLIOTTCABLE 2019-09-16 21:47:26 -05:00
parent 32fb44e459
commit a05d1629d1
No known key found for this signature in database
GPG key ID: 8C149643D99F3060

View file

@ -1,12 +1,12 @@
{
"compilerOptions": {
"moduleResolution": "Node",
"moduleResolution": "node",
"noImplicitAny": false,
"noEmitOnError": true,
"outDir": "build/tsc-out",
"sourceMap": true,
"target": "ES2017",
"lib": ["ES2017","dom", "dom.iterable"],
"target": "es2017",
"lib": ["es2017","dom", "dom.iterable"],
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types/"],
"experimentalDecorators": true,
"alwaysStrict": true,