forked from maidsafe/sn_browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 998 Bytes
/
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
{
"compilerOptions": {
"baseUrl": ".",
"moduleResolution": "node",
"target": "esnext",
"allowJs": true,
"noEmit": true,
"jsx": "react",
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"*": ["app/definitions"],
"$App/*": ["app/*"],
"$Tests/*": ["__tests__/*"],
"$BuilderConfig": ["builderConfig.js"],
"$Actions/*": ["app/actions/*"],
"$Store/*": ["app/store/*"],
"$Extensions/*": ["app/extensions/*"],
"$Reducers/*": ["app/reducers/*"],
"$Logger": ["app/logger.ts"],
"$Components/*": ["app/components/*"],
"$Constants": ["app/constants.ts"],
"$Utils/*": ["app/utils/*"],
"$Package": ["package.json"],
"$TestCafeHelpers": ["__testcafe__/helpers.js"]
}
},
"exclude": ["app/*.prod.js", "app/dist", "node_modules", "release"]
}