From 8c4381f86e2d51303001322813287c63995a5e1e Mon Sep 17 00:00:00 2001 From: William Boman Date: Fri, 20 Dec 2024 04:11:35 +0100 Subject: [PATCH] bump target --- tsconfig.json | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7120397..9eccad1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,15 @@ { "compilerOptions": { "paths": { - "@/*": ["./*"] + "@/*": [ + "./*" + ] }, - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "allowJs": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, @@ -16,9 +22,19 @@ "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", - "typeRoots": ["node_modules/@types", "./typings"] + "typeRoots": [ + "node_modules/@types", + "./typings" + ], + "target": "ES2018" }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"], + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ], "extends": "@tsconfig/strictest/tsconfig.json" }