File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
packages/react-form-renderer Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 9191! jest.config.ts
9292! tsconfig.cjs.json
9393! tsconfig.esm.json
94+ ! tsconfig.demo.json
9495! generate-typings.js
9596! rollup.config.js
9697! generate-componen-examples.js
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "sourceMap" : true ,
4+ "module" : " esnext" ,
5+ "moduleResolution" : " node" ,
6+ "target" : " es5" ,
7+ "lib" : [" es6" , " dom" ],
8+ "jsx" : " react-jsx" ,
9+ "allowSyntheticDefaultImports" : true ,
10+ "noErrorTruncation" : true ,
11+ "allowJs" : true ,
12+ "skipLibCheck" : true ,
13+ "esModuleInterop" : true ,
14+ "strict" : false ,
15+ "noEmit" : false ,
16+ "isolatedModules" : false ,
17+ "forceConsistentCasingInFileNames" : true ,
18+ "resolveJsonModule" : true ,
19+ "noImplicitAny" : false ,
20+ "noImplicitReturns" : false ,
21+ "noImplicitThis" : false ,
22+ "rootDir" : " ."
23+ },
24+ "include" : [
25+ " ./demo/**/*" ,
26+ " ./src/**/*"
27+ ],
28+ "exclude" : [
29+ " node_modules"
30+ ]
31+ }
You can’t perform that action at this time.
0 commit comments