mirror of
https://github.com/actions/publish-action.git
synced 2025-02-24 16:22:31 +00:00
* Add ESLint and Prettier * Rebuild action * Update package.json * Update licenses * Fix review points
20 lines
422 B
JSON
20 lines
422 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
} |