Files
setup-php/tsconfig.json
T

19 lines
396 B
JSON
Raw Permalink Normal View History

2019-09-06 05:17:43 +05:30
{
"compilerOptions": {
2021-09-10 03:08:04 +05:30
"declaration": true,
2021-04-26 15:12:09 +05:30
"esModuleInterop": true,
"lib": [
2026-01-20 06:29:00 +05:30
"ES2024"
2021-04-26 15:12:09 +05:30
],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "./lib",
"removeComments": true,
"rootDir": "./src",
2021-05-31 05:21:18 +05:30
"sourceMap": true,
2021-04-26 15:12:09 +05:30
"strict": true,
2026-01-20 06:29:00 +05:30
"target": "ES2024"
2019-09-06 05:17:43 +05:30
},
2021-04-26 15:12:09 +05:30
"exclude": ["__tests__", "lib", "node_modules"]
2019-09-06 05:17:43 +05:30
}