Skip to content

Commit

Permalink
2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fcsonline committed Nov 8, 2023
1 parent 4cdb29e commit 588c8f5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@factorialco/gat",
"version": "2.2.0",
"version": "2.3.0",
"description": "Write your GitHub Actions workflows using TypeScript",
"bin": {
"gat": "dist/cli.js"
Expand Down
18 changes: 9 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"compilerOptions": {
"target": "ES2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"lib": [ "ES2021" ],
"module": "ESNext" /* Specify what module code is generated. */,
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
"target": "ES6",
"lib": ["ES2021", "dom"],
"module": "ESNext",
"moduleResolution": "Node",
"types": ["node"],
"strict": true,
"esModuleInterop": true,
"outDir": "./dist"
},
"include": ["**/*.ts"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
Expand Down

0 comments on commit 588c8f5

Please sign in to comment.