setup-php/tsconfig.json
Shivam Mathur 14fa980966
Improve error handling in utils.fetch and its uses
Minor fixes in tests

Revert to ES2019
2021-07-09 11:26:38 +05:30

18 lines
371 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"lib": [
"ES2019"
],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "./lib",
"removeComments": true,
"rootDir": "./src",
"sourceMap": true,
"strict": true,
"target": "ES2019"
},
"exclude": ["__tests__", "lib", "node_modules"]
}