Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
hosseinmd committed Jun 14, 2022
1 parent 6abd4aa commit 3d413d5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@
"compilerOptions": {
"target": "ES2017",
"module": "CommonJS",
"lib": ["ESNext", "DOM"],
"lib": [
"ESNext",
"DOM"
],
"jsx": "react-jsx",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDirs": ["./src"],
"rootDirs": [
"./src"
],
"removeComments": true,
"noImplicitAny": true,
"moduleResolution": "node",
Expand All @@ -23,5 +28,9 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
}
}
},
"exclude": [
"**/dist/",
"**/__tests__/"
],
}

0 comments on commit 3d413d5

Please sign in to comment.