mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 16:55:48 -05:00
19 lines
337 B
JSON
19 lines
337 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"]
|
||
|
}
|