Skip to content

Commit

Permalink
Still trying to fix travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
jasny committed Nov 7, 2023
1 parent 907bf3b commit f9cc436
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ jobs:
if: tag IS present
before_install:
- yarn version --new-version $TRAVIS_TAG --no-git-tag-version
before_script:
- npx tsc --version
script:
- yarn compile
deploy:
Expand Down
1 change: 0 additions & 1 deletion tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "lib/cjs",
"module": "node16",
}
}
3 changes: 2 additions & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "lib/esm",
"module": "ESNext"
"module": "ESNext",
"moduleResolution": "bundler"
}
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"target": "es2020",
"rootDir": "src",
"esModuleInterop": true,
"module": "node16",
"moduleResolution": "node16"
},
"include": ["src"],
Expand Down

0 comments on commit f9cc436

Please sign in to comment.