mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
14fa980966
Minor fixes in tests Revert to ES2019
18 lines
371 B
JSON
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"]
|
|
} |