-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
34 lines (34 loc) · 994 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
{
"compilerOptions": {
"module": "amd",
"sourceMap": false,
"rootDir": "./scripts",
"target": "es5",
"jsx": "react",
"strictNullChecks": true
},
"filesGlob": [
"./scripts/**/*.ts",
"!**/*.tests.ts",
"./typings/index.d.ts"
],
"files": [
"scripts/app.ts",
"scripts/caching/cachedValue.ts",
"scripts/caching/extensionCache.ts",
"scripts/caching/throttlePromises.ts",
"scripts/contentsContracts.ts",
"scripts/identitiesInPrs.ts",
"scripts/identity/defaultImages.ts",
"scripts/identity/getIdentities.ts",
"scripts/identity/IdentityPicker.ts",
"scripts/identity/images.ts",
"scripts/identity/imageStorage.ts",
"scripts/identity/ImageUrlMapper.ts",
"scripts/RestCall.ts",
"scripts/runQuery.ts",
"scripts/searchContents.ts",
"scripts/status.ts",
"typings/index.d.ts"
]
}