Skip to content

Commit

Permalink
fix: tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoulloao committed Sep 17, 2022
1 parent a5564dc commit eedd29c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vercel-cors",
"version": "1.0.0-rc1",
"version": "1.0.0-rc2",
"description": "Simple CORS module for vercel serverless functions",
"main": "src/main.js",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitThis": false,
"strict": true,
"resolveJsonModule": true,
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true
},
"include": ["**/*.ts", "**/*.js"],
"include": ["**/*.ts", "**/*.js", "package.json"],
"exclude": ["node_modules", "prettier.config.js", "commitlint.config.js"]
}

0 comments on commit eedd29c

Please sign in to comment.