mirror of https://github.com/actions/toolkit
22 lines
370 B
JSON
22 lines
370 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"paths": {
|
|
"@actions/core": [
|
|
"../core"
|
|
],
|
|
"@actions/http-client": [
|
|
"../http-client"
|
|
]
|
|
},
|
|
"useUnknownInCatchVariables": false,
|
|
"target": "es2020"
|
|
},
|
|
"include": [
|
|
"./src"
|
|
]
|
|
}
|