-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.settings.json
35 lines (35 loc) · 1.06 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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"incremental": true,
"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": {
"react-mnt": ["packages/react-mnt/src"],
"react-mnt/*": ["packages/react-mnt/*"],
"react-props-check": ["packages/react-props-check/src"],
"react-props-check/*": ["packages/react-props-check/*"]
}
},
"include": ["packages/**/*"],
"exclude": ["node_modules", "packages/*/node_modules", "dist", ".vscode", ".husky"]
}