forked from table-library/react-table-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.82 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
40
41
42
43
44
45
46
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"paths": {
"@table-library/react-table-library/types/*": ["./src/types/*"],
"@table-library/react-table-library/common/*": ["./src/common/*"],
"@table-library/react-table-library/table/*": ["./src/table/*"],
"@table-library/react-table-library/compact/*": ["./src/compact/*"],
"@table-library/react-table-library/virtualized/*": [
"./src/virtualized/*"
],
// features
"@table-library/react-table-library/theme/*": ["./src/theme/*"],
"@table-library/react-table-library/resize/*": ["./src/resize/*"],
"@table-library/react-table-library/sort/*": ["./src/sort/*"],
"@table-library/react-table-library/select/*": ["./src/select/*"],
"@table-library/react-table-library/tree/*": ["./src/tree/*"],
"@table-library/react-table-library/pagination/*": ["./src/pagination/*"],
// themes
"@table-library/react-table-library/baseline/*": ["./src/baseline/*"],
"@table-library/react-table-library/mantine/*": ["./src/mantine/*"],
"@table-library/react-table-library/chakra-ui/*": ["./src/chakra-ui/*"],
"@table-library/react-table-library/material-ui/*": ["./src/material-ui/*"],
},
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"declaration": true,
"jsx": "preserve",
"jsxImportSource": "@emotion/react",
"importHelpers": true,
"removeComments": true,
"typeRoots": ["node_modules/@types"]
},
"include": ["src"]
}