mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-23 03:16:09 +08:00
8d4d79eeb7
to fix issue with Twirp client for next commit otherwise it returns: node_modules/twirp-ts/build/twirp/errors.d.ts:28:5 - error TS2425: Class 'Error' defines instance member property 'cause', but extended class 'TwirpError' defines it as instance member function. Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
25 lines
517 B
JSON
25 lines
517 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"newLine": "lf",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"exclude": [
|
|
"./__mocks__/**/*",
|
|
"./__tests__/**/*",
|
|
"./lib/**/*",
|
|
"node_modules",
|
|
"jest.config*.ts"
|
|
]
|
|
}
|