mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
2d081a4fd5
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
19 lines
391 B
JSON
19 lines
391 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"newLine": "lf",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"jest.config.ts"
|
|
]
|
|
}
|