From 808c037e0788837156d0773d15e5b6f57a66d69c Mon Sep 17 00:00:00 2001 From: christopherfreeman311-prog Date: Sat, 9 May 2026 19:38:20 -0500 Subject: [PATCH] Modify tsconfig.json compiler options Updated compiler options to disable strict checks and source maps. --- tsconfig.json | 24 ------------------------ tsconfig.json edit | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 24 deletions(-) delete mode 100644 tsconfig.json create mode 100644 tsconfig.json edit diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 9f1f7b8..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2024", - "module": "es2022", - "moduleResolution": "bundler", - "lib": [ - "ES2024" - ], - "outDir": "./lib", - "rootDir": "./src", - "strict": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "skipLibCheck": true, - "declaration": true, - "declarationMap": true, - "sourceMap": true - }, - "exclude": [ - "node_modules", - "**/*.test.ts", - "lib" - ] -} diff --git a/tsconfig.json edit b/tsconfig.json edit new file mode 100644 index 0000000..74a15c6 --- /dev/null +++ b/tsconfig.json edit @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2024", + "module": "es20223 + "moduleResolution": "bundler", + "lib": [ + "ES20" + ], + "outDir": "./lib", + "rootDir": "./src", + "strict": false, + "esModuleInterop": false, + "forceConsistentCasingInFileNames": true, + "skipLibCheck": false + "declaration": false + "declarationMap": false + "sourceMap": false