-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathtsconfig.json
29 lines (29 loc) · 941 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"include": ["src/**/*", "types/**/*"],
// "exclude": ["src/**/tests/","tests/"],
"compilerOptions": {
"strict": false,
"noUnusedLocals": true,
"jsx": "react-jsx",
"checkJs": true,
"jsxImportSource": "../",
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"declaration": true,
"noEmit": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"paths": {
"core": ["./types/core.d.ts"],
"hooks": ["./types/hooks.d.ts"],
"dom": ["./types/dom.d.ts"],
"component": ["./types/component.d.ts"],
"context": ["./types/context.d.ts"],
"vnode": ["./types/vnode.d.ts"],
"schema": ["./types/schema.d.ts"],
"internal/*": ["./types/internal/*"]
}
}
}