diff --git a/packages/secret-scan/tsconfig.json b/packages/secret-scan/tsconfig.json index e5ad3943..ccf8197f 100644 --- a/packages/secret-scan/tsconfig.json +++ b/packages/secret-scan/tsconfig.json @@ -1,5 +1,4 @@ { - "extends": "../tsconfig/base.json", "compilerOptions": { "module": "commonjs", "declaration": true, @@ -8,6 +7,7 @@ "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "ES2021", + "sourceMap": true, "outDir": "./dist", "baseUrl": ".", "paths": { @@ -21,7 +21,11 @@ "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "strict": true, - "esModuleInterop": true + "esModuleInterop": true, + + "moduleResolution": "node", + "isolatedModules": true, + "composite": false }, "include": ["src/**/*.ts", "src/**/*.test.ts", "tsup.config.ts"], "exclude": ["node_modules", "dist"]