mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
55ab748aaa
Update to Jest 27 Set sourceMap to true in tsconfig.json
18 lines
371 B
JSON
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"]
|
|
} |