Skip to content

Commit

Permalink
Update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoulloao authored Sep 17, 2022
1 parent aad5bdd commit a5564dc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"baseUrl": "src",
"outDir": "dist",
"target": "es2016",
"module": "commonjs",
"allowJs": true,
Expand All @@ -9,8 +10,10 @@
"forceConsistentCasingInFileNames": true,
"noImplicitThis": false,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"declaration": true,
"declarationMap": true
},
"include": ["**/*.ts", "**/*.js"],
"exclude": ["node_modules"]
"exclude": ["node_modules", "prettier.config.js", "commitlint.config.js"]
}

0 comments on commit a5564dc

Please sign in to comment.