File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
packages/event-proxy-server Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 5
5
"engines" : {
6
6
"node" : " >=10"
7
7
},
8
- "type " : " module " ,
9
- "module " : " build/index.js " ,
8
+ "main " : " build/index.js " ,
9
+ "types " : " build/index.d.ts " ,
10
10
"private" : true ,
11
11
"scripts" : {
12
12
"build" : " tsc --project tsconfig.json" ,
13
13
"build:transpile" : " tsc --project tsconfig.json"
14
14
},
15
15
"devDependencies" : {
16
16
"typescript" : " 3.8.3" ,
17
- "express" : " 4.18.2" ,
18
17
"@sentry/utils" : " 7.38.0" ,
19
18
"@sentry/types" : " 7.38.0"
20
19
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ../../tsconfig.json" ,
3
3
"compilerOptions" : {
4
- "module" : " ES2015" ,
5
- "outDir" : " build"
4
+ "module" : " CommonJS" ,
5
+ "outDir" : " build" ,
6
+ "declaration" : true ,
7
+ "esModuleInterop" : true
6
8
},
7
9
"include" : [" src/**/*.ts" ]
8
10
}
You can’t perform that action at this time.
0 commit comments