File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 30
30
"build" : " jlpm build:lib && jlpm build:labextension:dev" ,
31
31
"build:labextension" : " jupyter labextension build ." ,
32
32
"build:labextension:dev" : " jupyter labextension build --development True ." ,
33
- "build:lib" : " tsc --sourceMap" ,
34
- "build:lib:prod" : " tsc" ,
33
+ "build:lib" : " tsc --sourceMap && cp -R src/drawio lib " ,
34
+ "build:lib:prod" : " tsc && cp -R src/drawio lib " ,
35
35
"build:prod" : " jlpm clean && jlpm build:lib:prod && jlpm build:labextension" ,
36
36
"clean" : " jlpm clean:lib" ,
37
37
"clean:all" : " jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache" ,
Original file line number Diff line number Diff line change @@ -431,6 +431,7 @@ export class DrawIOWidget extends Widget {
431
431
}
432
432
433
433
private _editor : any ;
434
+ //@ts -ignore
434
435
private _mx : Private . MX ;
435
436
private _promptSpacing : any ;
436
437
private _ready = new PromiseDelegate < void > ( ) ;
Original file line number Diff line number Diff line change 16
16
"outDir" : " lib" ,
17
17
"rootDir" : " src" ,
18
18
"strict" : true ,
19
- "strictNullChecks" : true ,
20
- "target" : " ES2018"
19
+ "skipLibCheck" : true ,
20
+ "strictNullChecks" : false ,
21
+ "target" : " es2018" ,
22
+ "types" : [],
21
23
},
22
- "include" : [" src/*" ]
24
+ "include" : [" src/**/*" ],
25
+ "exclude" : [
26
+ " node_modules" ,
27
+ " ./node_modules" ,
28
+ " ./node_modules/*" ,
29
+ " ./node_modules/@types/node/index.d.ts" ,
30
+ ]
23
31
}
You can’t perform that action at this time.
0 commit comments