setup-php/tsconfig.json
Shivam Mathur 55ab748aaa
Update dependencies
Update to Jest 27

Set sourceMap to true in tsconfig.json
2021-06-04 21:34:31 +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"]
}