Skip to content

Commit 599395f

Browse files
committed
chore(renderer): add missing demo tsconfig
1 parent 8b4d6b4 commit 599395f

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

packages/react-form-renderer/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ vendor
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
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
}

0 commit comments

Comments
 (0)