diff --git a/tsconfig.json b/tsconfig.json index 48ec7db..331853c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,15 @@ { "compilerOptions": { "target": "ES2022", - "lib": ["ES2022"], + "lib": [ + "ES2022" + ], "module": "NodeNext", "moduleResolution": "NodeNext", "rootDir": ".", "outDir": "dist", "declaration": true, - "sourceMap": true, + "sourceMap": false, "strict": true, "noUncheckedIndexedAccess": true, "exactOptionalPropertyTypes": true, @@ -15,6 +17,12 @@ "forceConsistentCasingInFileNames": true, "skipLibCheck": true }, - "include": ["src/**/*.ts", "test/**/*.ts"], - "exclude": ["dist", "node_modules"] -} + "include": [ + "src/**/*.ts", + "test/**/*.ts" + ], + "exclude": [ + "dist", + "node_modules" + ] +} \ No newline at end of file