setup-php/tsconfig.json
Shivam Mathur b0559f7f8e
Bump version to 2.11.0
Update dependencies

Update year in license

Cleanup tsconfig.json

Set moduleResolution to node in tsconfig.json
2021-04-26 15:12:09 +05:30

18 lines
372 B
JSON

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