setup-php/tsconfig.json

18 lines
371 B
JSON
Raw Normal View History

2019-09-06 06:47:43 +07:00
{
"compilerOptions": {
"esModuleInterop": true,
"lib": [
"ESNext"
],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "./lib",
"removeComments": true,
"rootDir": "./src",
"sourceMap": true,
"strict": true,
"target": "ESNext"
2019-09-06 06:47:43 +07:00
},
"exclude": ["__tests__", "lib", "node_modules"]
2019-09-06 06:47:43 +07:00
}