mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
a34eeedd37
Add config to generate types Fix build error in install.ts after TypeScript upgrade Minor refactor in install.test.ts Add bugs, directories, files and types entries in package.json Update Node.js dependencies Update SECURITY.md
19 lines
396 B
JSON
19 lines
396 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"]
|
|
} |