mirror of
https://github.com/docker/build-push-action.git
synced 2025-05-06 21:49:33 +02:00

Additionally, write some tests to ensure the driver method `startBlacksmithBuilder` handles all exceptions correctly in both nofallback=true and nofallback=false configurations.
25 lines
503 B
JSON
25 lines
503 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"newLine": "lf",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./__mocks__/**/*",
|
|
"./__tests__/**/*",
|
|
"./lib/**/*",
|
|
"node_modules",
|
|
"jest.config.ts"
|
|
]
|
|
}
|