Skip to content

Commit

Permalink
pnpm build error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Souvik9205 committed Nov 12, 2024
1 parent fa8716c commit 1ebc958
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/secret-scan/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"extends": "../tsconfig/base.json",
"compilerOptions": {
"module": "commonjs",
"declaration": true,
Expand All @@ -8,6 +7,7 @@
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": ".",
"paths": {
Expand All @@ -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"]
Expand Down

0 comments on commit 1ebc958

Please sign in to comment.