forked from thkruz/keeptrack.space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.build.json
45 lines (45 loc) · 920 Bytes
/
tsconfig.build.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
/**
* This is the tsconfig extension that only applies to webpack.
*/
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist" /* Redirect output structure to the directory. */
},
"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/analysis/js/analysis-tools.js"
],
"exclude": [
"node_modules/**/*",
"dist/**/*",
"src/admin/**/*",
"embed/**/*",
"lib/**/*",
"coverage/**/*",
"tsconfig.json",
"src/tools/**/*",
"test/**/*",
"src/plugins/startAnalytics.js"
],
"filesGlob": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.png",
"src/**/*.jpg",
"!**/node_modules/**"
]
}