From 92ded99cb05b1b2b89f091342f4ef0c59007a899 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 25 Nov 2024 10:01:13 +0100 Subject: [PATCH] chore: cleanup tsconfig --- tsconfig.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 688acc9..091a711 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,17 +1,15 @@ { "compilerOptions": { - "target": "ES2022", + "target": "es2022", "module": "nodenext", - "lib": ["es2023", "dom"], + "lib": ["es2022", "dom"], "baseUrl": "./", "skipLibCheck": true, - "moduleResolution": "nodenext", "outDir": "./lib", "inlineSourceMap": true, - "declaration": true, - "declarationDir": "./lib/types", + "declaration": true, "declarationMap": true, "forceConsistentCasingInFileNames": true, @@ -29,9 +27,7 @@ "noImplicitReturns": true, "noFallthroughCasesInSwitch": true }, - "include": [ - "src/**/*.ts" - ], + "include": ["src/**/*.ts"], "typeAcquisition": { "enable": false }