-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathjest.tsconfig.json
More file actions
31 lines (30 loc) · 929 Bytes
/
jest.tsconfig.json
File metadata and controls
31 lines (30 loc) · 929 Bytes
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
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"jsx": "react",
"allowJs": true,
"sourceMap": false,
"experimentalDecorators": true,
"noImplicitUseStrict": true,
"removeComments": true,
"moduleResolution": "node",
"lib": ["es2017", "dom"],
"typeRoots": ["node_modules/@types"],
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"@src/*": ["src/*"],
"@popup/*": ["src/apps/popup/*"],
"@import-account-with-file/*": ["src/apps/import-account-with-file/*"],
"@connect-to-app/*": ["src/apps/connect-to-app/*"],
"@signature-request/*": ["src/apps/signature-request/*"],
"@onboarding/*": ["src/apps/onboarding/*"],
"@background/*": ["src/background/*"],
"@content/*": ["src/content/*"],
"@libs/*": ["src/libs/*"],
"@hooks/*": ["src/hooks/*"]
}
},
"exclude": ["node_modules", "build"]
}