-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.settings.json
38 lines (38 loc) · 1.31 KB
/
tsconfig.settings.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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"isolatedModules": true,
"jsx": "react",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"stripInternal": true,
"target": "ES2022",
"types": ["jest", "node", "@testing-library/jest-dom"],
"baseUrl": ".",
"rootDir": "",
"paths": {
"@mountain-ui/doc-tools": ["packages/doc-tools/src"],
"@mountain-ui/doc-tools/*": ["packages/doc-tools/*"],
"@mountain-ui/react-components": ["packages/react-components/src"],
"@mountain-ui/react-components/*": ["packages/react-components/*"],
"@mountain-ui/react-hooks": ["packages/react-hooks/src"],
"@mountain-ui/react-hooks/*": ["packages/react-hooks/*"],
"@mountain-ui/utils": ["packages/utils/src"],
"@mountain-ui/utils/*": ["packages/utils/*"]
}
},
"include": ["packages/**/*"],
"exclude": ["node_modules", "packages/*/node_modules", "dist", ".vscode", ".husky"]
}