Files
toolkit/tsconfig.json
T

26 lines
496 B
JSON
Raw Permalink Normal View History

2019-04-19 15:15:34 -04:00
{
"compilerOptions": {
"esModuleInterop": true,
2019-04-19 15:15:34 -04:00
"module": "commonjs",
"strict": true,
"declaration": true,
"target": "es6",
2023-08-03 16:36:11 -04:00
"sourceMap": true,
"noImplicitAny": false,
"baseUrl": "./",
"paths": {
"@actions/core": [
"packages/core"
],
"@actions/http-client": [
"packages/http-client"
],
2023-09-08 14:29:27 +00:00
},
"useUnknownInCatchVariables": false
2019-04-19 15:15:34 -04:00
},
"exclude": [
"node_modules",
2020-04-27 17:17:31 +02:00
"**/*.test.ts",
"**/__mocks__/*"
2019-04-19 15:15:34 -04:00
]
}