Skip to content

Commit b572961

Browse files
committed
fix: tsc emit
1 parent 423ab36 commit b572961

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es6",
4+
"module": "node16",
5+
"types": ["node"],
6+
"declaration": true,
7+
"noEmit": true,
8+
"isolatedModules": true,
9+
"esModuleInterop": true,
10+
"forceConsistentCasingInFileNames": true,
11+
"strict": true,
12+
"skipLibCheck": false,
13+
"noFallthroughCasesInSwitch": true,
14+
"noImplicitReturns": true,
15+
"noUncheckedIndexedAccess": true,
16+
"noImplicitAny": true
17+
}
18+
}

packages/jsondiffpatch/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"noUncheckedIndexedAccess": true,
1616
"noImplicitAny": true
1717
},
18-
"include": ["src", "test"]
18+
"include": ["src"]
1919
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"module": "node16",
55
"types": ["node"],
66
"declaration": true,
7-
"outDir": "lib",
7+
"noEmit": true,
88
"isolatedModules": true,
99
"esModuleInterop": true,
1010
"forceConsistentCasingInFileNames": true,

0 commit comments

Comments
 (0)