From dcbf92c3aadf803310e0ce6d2ecdfacfac788c71 Mon Sep 17 00:00:00 2001 From: Arno Chauveau Date: Thu, 24 Jul 2025 10:17:21 +0200 Subject: [PATCH] Use a modern EcmaScript version --- TypeScript/tsconfig.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/TypeScript/tsconfig.json b/TypeScript/tsconfig.json index d2922795..1623eedf 100644 --- a/TypeScript/tsconfig.json +++ b/TypeScript/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "commonjs", - "target": "es5", + "target": "es2022", "strict": true, "noImplicitAny": false, "sourceMap": true, @@ -9,12 +9,8 @@ "resolveJsonModule": true, "esModuleInterop": true, "paths": { - "@/*": [ - "app/*" - ] + "@/*": ["app/*"] } }, - "exclude": [ - "node_modules" - ] + "exclude": ["node_modules"] }