-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 828 Bytes
/
Copy pathtsconfig.json
File metadata and controls
29 lines (29 loc) · 828 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
{
"compilerOptions": {
"noImplicitAny": true,
"module": "es6",
"moduleResolution": "node",
"target": "es2015",
"jsx": "react",
"allowJs": true,
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types"],
"outDir": "./build/tmp",
"baseUrl": "./",
"paths": {
"@root/*": ["src/*"],
"@actions": ["src/actions"],
"@actions/*": ["src/actions/*"],
"@components": ["src/components"],
"@components/*": ["src/components/*"],
"@hooks": ["src/hooks"],
"@hooks/*": ["src/hooks/*"],
"@icons": ["src/icons"],
"@icons/*": ["src/icons/*"],
"@messaging": ["src/messaging.ts"],
"@models": ["src/models"],
"@models/*": ["src/models/*"],
"@services": ["src/services"],
"@services/*": ["src/services/*"]
}
}
}