goreleaser-action/tsconfig.json
Carlos Alexandro Becker a801b0bdda
chore: review
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2026-01-26 08:27:33 -03:00

22 lines
481 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"target": "ES2024",
"module": "ESNext",
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"moduleResolution": "node",
"strict": false,
"skipLibCheck": true
},
"exclude": [
"node_modules",
"**/*.test.ts",
"jest.config.ts"
]
}