Skip to content

Commit b7d7667

Browse files
committed
use tap 18, build with tshy
1 parent 5cedf2c commit b7d7667

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2912
-3937
lines changed

.tshy/build.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../tsconfig.json",
3+
"compilerOptions": {
4+
"rootDir": "../src",
5+
"target": "es2022",
6+
"module": "nodenext",
7+
"moduleResolution": "nodenext"
8+
}
9+
}

.tshy/commonjs.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "./build.json",
3+
"include": [
4+
"../src/**/*.ts",
5+
"../src/**/*.cts",
6+
"../src/**/*.tsx"
7+
],
8+
"exclude": [
9+
".../src/**/*.mts"
10+
],
11+
"compilerOptions": {
12+
"outDir": "../.tshy-build-tmp/commonjs"
13+
}
14+
}

.tshy/esm.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "./build.json",
3+
"include": [
4+
"../src/**/*.ts",
5+
"../src/**/*.mts",
6+
"../src/**/*.tsx"
7+
],
8+
"compilerOptions": {
9+
"outDir": "../.tshy-build-tmp/esm"
10+
}
11+
}
File renamed without changes.

0 commit comments

Comments
 (0)