Files
toolkit/packages/artifact/tsconfig.json
T
2026-01-28 21:44:48 -05:00

23 lines
405 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": "./",
"outDir": "./lib",
"rootDir": "./src",
"module": "node16",
"moduleResolution": "node16",
"paths": {
"@actions/core": [
"../core"
],
"@actions/http-client": [
"../http-client"
]
},
"useUnknownInCatchVariables": false,
},
"include": [
"./src"
]
}