We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0c9263 commit 8612336Copy full SHA for 8612336
tsconfig.json
@@ -0,0 +1,28 @@
1
+{
2
+ "compilerOptions": {
3
+ "sourceMap": true,
4
+ "module": "esnext",
5
+ "moduleResolution": "node",
6
+ "target": "es5",
7
+ "lib": ["es6", "dom"],
8
+ "jsx": "preserve",
9
+ "allowSyntheticDefaultImports": true,
10
+ "noErrorTruncation": true,
11
+ "allowJs": true,
12
+ "strict": true,
13
+ "noEmit": true,
14
+ "outDir": "dev/null",
15
+ "types": [],
16
+ "baseUrl" : "./",
17
+ "paths": {
18
+ "*" : ["./node_modules/@types/*", "*"],
19
+ }
20
+ },
21
+ "include": ["./packages/**/dist/cjs/index.d.ts"],
22
+ "exclude": [
23
+ "node_modules",
24
+ "./node_modules",
25
+ "./node_modules/*",
26
+ "./node_modules/@types/node/index.d.ts",
27
+ ]
28
+}
0 commit comments