forked from mohitbagra/vsts-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 1.25 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
{
"compilerOptions": {
"module": "es6",
"moduleResolution": "node",
"sourceMap": false,
"target": "es5",
"lib": ["dom", "es2015.promise", "es5"],
"jsx": "react",
"experimentalDecorators": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"allowJs": true,
"noEmitHelpers": true,
"importHelpers": true,
"paths": {
"OfficeFabric/*": ["node_modules/office-ui-fabric-react/lib/*"],
"VSSUI/*": ["node_modules/vss-ui/*"],
"Common/*": ["src/Common/*"],
"BugBashPro/*": ["src/Apps/BugBashPro/scripts/*"],
"Checklist/*": ["src/Apps/Checklist/scripts/*"],
"ControlsLibrary/*": ["src/Apps/ControlsLibrary/scripts/*"],
"OneClick/*": ["src/Apps/OneClick/scripts/*"],
"PRWorkItems/*": ["src/Apps/PRWorkItems/scripts/*"],
"RelatedWits/*": ["src/Apps/RelatedWits/scripts/*"]
},
"types": ["react", "react-dom", "vss-web-extension-sdk"]
},
"typeAcquisition": {
"enable": true
},
"filesGlob": ["src/**/*.ts", "src/**/*.tsx"]
}