diff --git a/package-lock.json b/package-lock.json index e1dd755..3a78485 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@factorialco/gat", - "version": "2.2.0", + "version": "2.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@factorialco/gat", - "version": "2.2.0", + "version": "2.3.0", "license": "ISC", "dependencies": { "js-yaml": "^4.1.0", diff --git a/package.json b/package.json index 11b9143..649afc2 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/tsconfig.json b/tsconfig.json index 0d79842..0d9add7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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"