-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.12 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
{
"compilerOptions": {
"jsx": "react-jsx",
"target": "esnext",
"lib": ["es6", "dom", "dom.Iterable"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"strict": true,
"skipLibCheck": true,
"baseUrl": "./",
"outDir": ".cache/ts",
"paths": {
"@vkontakte/vkui": ["./packages/vkui/src"],
// FIXME дублируем, чтобы не падал `yarn run lint:types`.
// Не выкупается `paths`, который указан в `./packages/vkui`
"@vkui-e2e/test": ["./packages/vkui/src/testing/e2e/index.playwright"],
"@vkui-e2e/playground-helpers": ["./packages/vkui/src/testing/e2e/index.playground"],
"@vkui-e2e/utils": ["./packages/vkui/src/testing/e2e/utils"]
}
},
"exclude": [
"**/node_modules",
"**/dist",
"**/coverage/**",
"**/storybook-static",
"**/__testfixtures__",
"**/__tests__"
]
}