forked from microsoft/TypeScriptSamples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.15 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.15 KB
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
{
"filesGlob": [
"../app/**/*.ts",
"!../app/typings/**/*.ts",
"./**/*.ts",
"./typings/**/*.ts"
],
"compilerOptions": {
"module": "commonjs"
},
"files": [
"../app/app.ts",
"../app/components/version/interpolate-filter.ts",
"../app/components/version/interpolate-filter_test.ts",
"../app/components/version/version-directive.ts",
"../app/components/version/version-directive_test.ts",
"../app/components/version/version.ts",
"../app/components/version/version_test.ts",
"../app/view1/view1.ts",
"../app/view1/view1_test.ts",
"../app/view2/view2.ts",
"../app/view2/view2_test.ts",
"./protractor.conf.ts",
"./scenarios.ts",
"./typings/angular-protractor/angular-protractor.d.ts",
"./typings/angularjs/angular-mocks.d.ts",
"./typings/angularjs/angular.d.ts",
"./typings/jasmine/jasmine.d.ts",
"./typings/jquery/jquery.d.ts",
"./typings/karma-jasmine/karma-jasmine.d.ts",
"./typings/selenium-webdriver/selenium-webdriver.d.ts",
"./typings/tsd.d.ts"
]
}