This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
build-push-action/tsconfig.json

23 lines
468 B
JSON
Raw Normal View History

2025-06-05 13:09:30 +08:00
{
"compilerOptions": {
"esModuleInterop": true,
"target": "es6",
"module": "commonjs",
"strict": true,
"newLine": "lf",
"outDir": "./lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
},
"exclude": [
"./__mocks__/**/*",
"./__tests__/**/*",
"./lib/**/*",
"node_modules",
"jest.config.ts"
]
}