diff --git a/tsconfig.json b/tsconfig.json index 2161b3a..2895880 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "baseUrl": "src", + "outDir": "dist", "target": "es2016", "module": "commonjs", "allowJs": true, @@ -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"] }