-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
35 lines (35 loc) · 1.16 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
{
"version": "1.4.1",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false
},
"filesGlob": [
"./**/*.ts",
"!./node_modules/**/*.ts"
],
"files": [
"./Scripts/typings/angularjs/angular.d.ts",
"./Scripts/typings/angularjs/angular-route.d.ts",
"./Scripts/typings/d3/d3.d.ts",
"./Scripts/typings/express/express.d.ts",
"./Scripts/typings/jquery/jquery.d.ts",
"./Scripts/typings/node/node.d.ts",
"./Scripts/typings/pnotify/jquery.pnotify.d.ts",
"./public/app/app.ts",
"./public/app/homeCtrl.ts",
"./public/directives/slide/slide.ts",
"./public/directives/slide/slideCtrl.ts",
"./public/directives/techRadar/FontAwesomeConverter.ts",
"./public/directives/techRadar/techRadar.ts",
"./public/directives/techRadar/technology.ts",
"./public/directives/youtube/youtube.ts",
"./public/services/bus/MessageBus.ts",
"./public/services/sheet/SheetService.ts",
"./server.ts"
]
}