diff --git a/package.json b/package.json index fb68573..e5c98e4 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/tsconfig.json b/tsconfig.json index 2895880..77e8797 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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"] }