mirror of
https://github.com/shivammathur/setup-php.git
synced 2026-07-26 10:48:13 +07:00
23 lines
432 B
JSON
23 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"ES2025"
|
|
],
|
|
"module": "Node20",
|
|
"moduleResolution": "Node16",
|
|
"noImplicitAny": true,
|
|
"outDir": "./lib",
|
|
"removeComments": true,
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ES2025",
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
|
}
|