Switch to ES2020

This commit is contained in:
Johannes Loher 2021-02-06 22:09:07 +01:00
parent f20d9b3143
commit d7c617facb

View file

@ -1,10 +1,12 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["DOM", "ES6", "ES2017"],
"target": "ES2020",
"lib": ["DOM", "ES2020"],
"types": ["foundry-vtt-types"],
"esModuleInterop": true,
"moduleResolution": "node"
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": false
},
"include": ["src"]
}