-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathtsconfig.json
47 lines (47 loc) · 946 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* This is the tsconfig extension that is used by the IDE.
*/
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.jsx",
"src/**/*.png",
"src/**/*.mp3",
"src/**/*.jpg",
"test/**/*.ts",
"test/**/*.tsx",
"test/**/*.js",
"test/**/*.jsx",
"test/**/*.png",
"test/**/*.mp3",
"test/**/*.jpg",
"public/serviceWorker.js",
"public/settings/settingsOverride.js",
"public/settings/settingsOverrideEmbed.js",
"src/globabl.d.ts"
],
"exclude": [
"node_modules/**/*",
"dist/**/*",
"src/admin/**/*",
"embed/**/*",
"lib/**/*",
"coverage/**/*",
"tsconfig.json",
"src/tools/**/*",
"src/plugins/startAnalytics.js"
],
"filesGlob": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.png",
"src/**/*.jpg",
"!**/node_modules/**"
]
}