Files
toolkit/tsconfig.json
T

26 lines
459 B
JSON
Raw 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,
2023-08-07 14:24:58 -07:00
"target": "es2020",
2023-08-03 16:36:11 -04:00
"sourceMap": true,
"noImplicitAny": false,
"baseUrl": "./",
"paths": {
"@actions/core": [
"packages/core"
],
"@actions/http-client": [
"packages/http-client"
],
}
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
]
2023-08-07 14:24:58 -07:00
}