-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 955 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 955 Bytes
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
30
{
"include": ["src/**/*", "types/**/*"],
"compilerOptions": {
"strict": false,
"noUnusedLocals": true,
"jsx": "react-jsx",
"checkJs": true,
"jsxImportSource": "atomico",
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"declaration": true,
"noEmit": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"baseUrl": "./",
"paths": {
"atomico": ["./"],
"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/*"]
}
}
}