mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 11:51:07 +07:00
938988b211
Update Node.js dependencies Fix build error in install.ts Add config to generate types Add bugs, directories, files and types entries in package.json
20 lines
397 B
JSON
20 lines
397 B
JSON
{
|
|
"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"
|
|
},
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
|
}
|