setup-php/tsconfig.json

20 lines
397 B
JSON
Raw Permalink Normal View History

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