Skip to content
Snippets Groups Projects
Commit 372f97997b23 authored by Frank Bessou's avatar Frank Bessou :spider_web:
Browse files

fix(tsconfig): don't depend on ESNext library

Prefer using target's API (ES6 by default), which is more susceptible to be
implemented by browsers.  If one needs more recent ECMAScript feature, he still
can add the needed polyfills and use more recent libs.
parent b567903c70ec
No related branches found
No related tags found
1 merge request!1Many little improvements
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "react-jsx", "jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"target": "es6", "target": "es6",
"skipLibCheck": true "skipLibCheck": true
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment