forked from widgetbot-io-jumuro/embed
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtsconfig.json
40 lines (40 loc) · 1.2 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
37
38
39
40
{
"compilerOptions": {
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom", "esnext.asynciterable"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"logger": ["src/modules/logger.ts"],
"raven": ["src/modules/sentry.ts"],
"locales": ["src/app/locales"],
"locales/*": ["src/app/locales/*"],
"notify": ["src/app/notify.tsx"],
"styled-elements/*": ["src/modules/styled-elements/*"],
"typed-emotion": ["src/controllers/emotion/index.ts"],
"queries": ["src/store/actions/graphql/queries.ts"],
"markdown": ["src/components/Markdown/index.ts"],
"markdown/*": ["src/components/Markdown/*"],
"socket-io": ["src/controllers/socket-io"],
"fluent": ["src/controllers/cerebral/fluent.ts"],
"embed-api": ["src/controllers/embed-api"],
"emoji": ["src/components/Messages/Message/Markdown/elements/emoji.ts"]
}
},
"exclude": [
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
]
}