File tree Expand file tree Collapse file tree 2 files changed +34
-2
lines changed
packages/devextreme-react-generator Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Original file line number Diff line number Diff line change 15
15
"scripts" : {
16
16
"clean" : " del-cli ./dist" ,
17
17
"build" : " npm run clean && tsc" ,
18
+ "build:local" : " npm run clean && tsc --project tsconfig.local.json" ,
18
19
"pack" : " npm run build && npm pack" ,
19
20
"postpack" : " cpy './*.tgz' dist && del-cli './*.tgz'" ,
20
21
"test" : " jest"
37
38
"@types/jest" : " ^22.2.3" ,
38
39
"cpy-cli" : " ^3.1.1" ,
39
40
"del-cli" : " ^3.0.1" ,
40
- "jest" : " ^25.0.0 " ,
41
- "ts-jest" : " ^25 .5.1 " ,
41
+ "jest" : " ^26.6.3 " ,
42
+ "ts-jest" : " ^26 .5.6 " ,
42
43
"typescript" : " ~4.2"
43
44
}
44
45
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "outDir" : " ./dist" ,
4
+ "skipLibCheck" : true ,
5
+ "resolveJsonModule" : true ,
6
+ "target" : " es5" ,
7
+ "module" : " commonjs" ,
8
+ "noEmitOnError" : true ,
9
+ "jsx" : " react" ,
10
+ "declaration" : true ,
11
+ "experimentalDecorators" : true ,
12
+ "forceConsistentCasingInFileNames" : true ,
13
+ "noFallthroughCasesInSwitch" : true ,
14
+ "noImplicitAny" : false ,
15
+ "noImplicitReturns" : true ,
16
+ "noImplicitThis" : true ,
17
+ "noUnusedLocals" : true ,
18
+ "noUnusedParameters" : true ,
19
+ "strictNullChecks" : true ,
20
+ "lib" : [" es2015" , " dom" ]
21
+ },
22
+ "include" : [
23
+ " src/**/*.ts" ,
24
+ " src/**/*.tsx"
25
+ ],
26
+ "exclude" : [
27
+ " src/**/*.test.ts" ,
28
+ " node_modules" ,
29
+ " dist"
30
+ ]
31
+ }
You can’t perform that action at this time.
0 commit comments