mirror of
https://github.com/actions/publish-action.git
synced 2026-08-08 13:32:25 +02:00
* Migrate to ESM * Use default semver import and root SemVer type --------- Co-authored-by: gowridurgad <gowridurgad@gmail.com>
22 lines
493 B
JSON
22 lines
493 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"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", "**/*.test.ts", "jest.config.ts"]
|
|
}
|