-
Notifications
You must be signed in to change notification settings - Fork 28
/
tsconfig.json
39 lines (39 loc) · 1.3 KB
/
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
30
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"jsx": "react",
"strict": true,
"stripInternal": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"downlevelIteration": true,
// "verbatimModuleSyntax": true,
"target": "ES2019",
"module": "ESNext",
"sourceMap": true,
"outDir": "./types",
"lib": ["esnext", "dom"],
"moduleResolution": "Node",
"baseUrl": ".",
"paths": {
"@dflex/utils": ["./packages/dflex-utils/src/index.ts"],
"@dflex/dom-gen": ["./packages/dflex-dom-gen/src/index.ts"],
"@dflex/core-instance": ["./packages/dflex-core-instance/src/index.ts"],
"@dflex/store": ["./packages/dflex-store/src/index.ts"],
"@dflex/draggable": ["./packages/dflex-draggable/src/index.ts"],
"@dflex/dnd": ["./packages/dflex-dnd/src/index.ts"]
},
"skipLibCheck": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"esModuleInterop": true,
"typeRoots": ["dflex-env.d.ts", "node_modules/@types"]
},
"include": ["packages", "playgrounds", "dflex-env.d.ts"],
"exclude": ["node_modules", "dist", "**/*.cy*", "**/*.test*"]
}