1
0
Fork 0
mirror of https://github.com/actions/toolkit.git synced 2025-06-07 22:17:01 +09:00
toolkit/tsconfig.json
Tatyana Kostromskaya ce31408ff5 Update dependencies
2023-09-08 14:29:27 +00:00

26 lines
No EOL
496 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"module": "commonjs",
"strict": true,
"declaration": true,
"target": "es6",
"sourceMap": true,
"noImplicitAny": false,
"baseUrl": "./",
"paths": {
"@actions/core": [
"packages/core"
],
"@actions/http-client": [
"packages/http-client"
],
},
"useUnknownInCatchVariables": false
},
"exclude": [
"node_modules",
"**/*.test.ts",
"**/__mocks__/*"
]
}