mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
22 lines
349 B
JSON
22 lines
349 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es6",
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"es6",
|
||
|
"dom"
|
||
|
],
|
||
|
"newLine": "lf",
|
||
|
"outDir": "./lib",
|
||
|
"rootDir": "./src",
|
||
|
"strict": true,
|
||
|
"noImplicitAny": false,
|
||
|
"esModuleInterop": true,
|
||
|
"sourceMap": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/*.test.ts"
|
||
|
]
|
||
|
}
|