File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 18
18
"build:watch" : " NODE_ENV=production yarn build:all:watch" ,
19
19
"build:dev:watch" : " NODE_ENV=development yarn build:all:watch" ,
20
20
"build:all:watch" : " yarn clean && run-p \" build:worker --watch\" \" build:core --watch\" " ,
21
+ "build:types" : " tsc -p tsconfig.types.json" ,
21
22
"build:npm" : " ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm" ,
22
23
"circularDepCheck" : " #TODO comment in after migration: madge --circular src/index.ts" ,
23
24
"clean" : " rimraf build sentry-replay-*.tgz" ,
Original file line number Diff line number Diff line change 16
16
"allowJs" : true ,
17
17
"declaration" : true ,
18
18
"declarationMap" : true ,
19
- "declarationDir" : " ./types" ,
20
19
"strictNullChecks" : true ,
21
20
"outDir" : " ./build/npm/dist"
22
21
},
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.json" ,
3
+
4
+ "compilerOptions" : {
5
+ "declaration" : true ,
6
+ "declarationMap" : true ,
7
+ "emitDeclarationOnly" : true ,
8
+ "outDir" : " build/npm/types"
9
+ }
10
+ }
You can’t perform that action at this time.
0 commit comments