From d7c617facb73da723bdd9deac56911a93e453d8c Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Sat, 6 Feb 2021 22:09:07 +0100 Subject: [PATCH] Switch to ES2020 --- tsconfig.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5f44cffe..f0f1205b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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"] }