-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
37 lines (37 loc) · 1.27 KB
/
tsconfig.base.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
30
31
32
33
34
35
36
37
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": "./packages",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@virtualstate/union": ["packages/union/src/index.ts"],
"@virtualstate/fringe": ["packages/fringe/src/index.ts"],
"@virtualstate/hooks": ["packages/hooks/src/index.ts"],
"@virtualstate/hooks-extended": ["packages/hooks-extended/src/index.ts"],
"@virtualstate/dom": ["packages/dom/src/index.ts"],
"@virtualstate/web": ["packages/web/src/index.ts"],
"@virtualstate/deno": ["packages/deno/src/index.ts"],
"@virtualstate/x": ["packages/x/src/index.ts"],
"@virtualstate/examples": ["packages/examples/src/index.ts"],
"@virtualstate/typescript": ["packages/typescript/src/index.ts"],
"@virtualstate/*": ["packages/*/src"]
},
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "createFragment",
"composite": true
},
"exclude": ["node_modules", "tmp"]
}