setup-php/tsconfig.json
Shivam Mathur 32c1436247
Update dependencies
Update to Jest 27

Set sourceMap to true in tsconfig.json
2021-05-31 04:07:20 +05:30

18 lines
371 B
JSON

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