forked from mantinedev/mantine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (47 loc) · 1.31 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
47
{
"include": [
"./scripts",
"./@types",
"./packages/@mantine-tests/*/src",
"./packages/@docs/*/src",
"./packages/@mantine/*/src",
"./packages/@mantinex/*/src",
"./apps/*"
],
"exclude": [
"node_modules",
"./packages/@mantine-tests/*/esm/**/*",
"./packages/@mantine-tests/*/cjs/**/*",
"./packages/@mantine-tests/*/lib/**/*",
"./packages/@docs/*/esm/**/*",
"./packages/@docs/*/cjs/**/*",
"./packages/@docs/*/lib/**/*",
"./packages/@mantine/*/lib/**/*",
"./packages/@mantine/*/esm/**/*",
"./packages/@mantine/*/cjs/**/*",
"./packages/@mantinex/*/esm/**/*",
"./packages/@mantinex/*/cjs/**/*",
"./packages/@mantinex/*/lib/**/*"
],
"compilerOptions": {
"types": ["node", "jest", "@testing-library/jest-dom"],
"target": "ES2015",
"lib": ["DOM", "ESNext"],
"module": "ESNext",
"moduleResolution": "Node",
"jsx": "react-jsx",
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmitOnError": true,
"allowJs": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@mantine/*": ["./packages/@mantine/*/src"],
"@mantinex/*": ["./packages/@mantinex/*/src"],
"@mantine-tests/*": ["./packages/@mantine-tests/*/src"],
"@docs/*": ["./packages/@docs/*/src"]
}
}
}