Skip to content

Commit 3e6fdba

Browse files
committed
Fix build output to fix package publishing
1 parent 68db20f commit 3e6fdba

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

custom-typings/package.json.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare module '*.json';

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
"declaration": true,
44
"importHelpers": true,
55
"module": "commonjs",
6+
"rootDir": "src",
67
"outDir": "lib",
78
"strict": true,
89
"target": "es2017",
910
"composite": true,
10-
"resolveJsonModule": true,
1111
"typeRoots" : [
1212
"./node_modules/@types",
1313
"./custom-typings"
1414
]
1515
},
1616
"include": [
1717
"src/**/*",
18-
"custom-typings/**/*.d.ts",
18+
"custom-typings/**/*.d.ts"
1919
]
2020
}

0 commit comments

Comments
 (0)