mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
4d3cfaa653
Added fetch_latest to tools.json. When fetch_latest is true for a tool it will fetch the release.atom for the tool and parse that to get the latest release. Bumped lib version to ES2020 in tsconfig.json for string.matchAll.
18 lines
371 B
JSON
18 lines
371 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"ES2020"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"outDir": "./lib",
|
|
"removeComments": true,
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ES2019"
|
|
},
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
|
} |