Skip to content

Commit

Permalink
drop EOL node, use clock tap plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jul 6, 2024
1 parent b695221 commit 1aa58f9
Show file tree
Hide file tree
Showing 10 changed files with 1,296 additions and 1,000 deletions.
1 change: 0 additions & 1 deletion .tshy/build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": "../src",
"target": "es2022",
"module": "nodenext",
"moduleResolution": "nodenext"
}
Expand Down
6 changes: 4 additions & 2 deletions .tshy/commonjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
"include": [
"../src/**/*.ts",
"../src/**/*.cts",
"../src/**/*.tsx"
"../src/**/*.tsx",
"../src/**/*.json"
],
"exclude": [
"../src/**/*.mts"
"../src/**/*.mts",
"../src/package.json"
],
"compilerOptions": {
"outDir": "../.tshy-build/commonjs"
Expand Down
7 changes: 5 additions & 2 deletions .tshy/esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
"include": [
"../src/**/*.ts",
"../src/**/*.mts",
"../src/**/*.tsx"
"../src/**/*.tsx",
"../src/**/*.json"
],
"exclude": [
"../src/package.json"
],
"exclude": [],
"compilerOptions": {
"outDir": "../.tshy-build/esm"
}
Expand Down
Loading

0 comments on commit 1aa58f9

Please sign in to comment.