mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
b0559f7f8e
Update dependencies Update year in license Cleanup tsconfig.json Set moduleResolution to node in tsconfig.json
18 lines
372 B
JSON
18 lines
372 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"outDir": "./lib",
|
|
"removeComments": true,
|
|
"rootDir": "./src",
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"target": "ESNext"
|
|
},
|
|
"exclude": ["__tests__", "lib", "node_modules"]
|
|
} |