Files

21 lines
347 B
JSON
Raw Permalink Normal View History

2020-02-11 09:49:46 -05:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": "./",
"outDir": "./lib",
2023-08-03 16:36:11 -04:00
"rootDir": "./src",
"paths": {
"@actions/core": [
"../core"
],
"@actions/http-client": [
"../http-client"
]
},
2023-08-07 08:45:28 -07:00
"useUnknownInCatchVariables": false,
2020-02-11 09:49:46 -05:00
},
"include": [
"./src"
]
2023-08-07 08:45:28 -07:00
}