mirror of
https://github.com/docker/setup-qemu-action.git
synced 2024-11-06 04:05:40 +01:00
3ef11caa59
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
22 lines
444 B
JSON
22 lines
444 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,
|
|
},
|
|
"exclude": [
|
|
"./__tests__/**/*",
|
|
"./lib/**/*",
|
|
"node_modules",
|
|
"jest.config.ts"
|
|
]
|
|
}
|