Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit c8beace

Browse files
committed
Move simplified tsconfig to the project root
1 parent b7cb504 commit c8beace

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tsconfig.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"declaration": true,
4+
"jsx": "react",
5+
"lib": ["es2015", "esnext.asynciterable", "dom"],
6+
"module": "es2015",
7+
"moduleResolution": "node",
8+
"importHelpers": true,
9+
"noUnusedParameters": true,
10+
"removeComments": true,
11+
"sourceMap": true,
12+
"strict": true,
13+
"target": "es5",
14+
"esModuleInterop": true,
15+
"experimentalDecorators": true
16+
},
17+
"include": ["../packages/*/src/**/*"],
18+
"exclude": ["../packages/*/node_modules", "../packages/*/lib", "../examples"]
19+
}

0 commit comments

Comments
 (0)