forked from takeshi/gulp-typescript-annotate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 1.34 KB
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 1.34 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
35
36
37
{
"version": "1.4.1",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false
},
"filesGlob": [
"./lib/**/*.ts",
"./examples/src/**/*.ts",
"./examples/.tmp/typings/**/*.ts",
"!./node_modules/**/*.ts",
"!./examples/node_modules/**/*.ts",
"./node_modules/typescript/bin/typescript.d.ts"
],
"files": [
"./lib/class-modify.ts",
"./test/sample.ts",
"./examples/src/app/components/navbar/navbar.controller.ts",
"./examples/src/app/index.ts",
"./examples/src/app/main/main.controller.ts",
"./examples/.tmp/typings/angular-ui-router/angular-ui-router.d.ts",
"./examples/.tmp/typings/angularjs/angular-animate.d.ts",
"./examples/.tmp/typings/angularjs/angular-cookies.d.ts",
"./examples/.tmp/typings/angularjs/angular-mocks.d.ts",
"./examples/.tmp/typings/angularjs/angular-sanitize.d.ts",
"./examples/.tmp/typings/angularjs/angular.d.ts",
"./examples/.tmp/typings/bootstrap/bootstrap.d.ts",
"./examples/.tmp/typings/jquery/jquery.d.ts",
"./examples/.tmp/typings/tsd.d.ts",
"./node_modules/typescript/bin/typescript.d.ts"
],
"compileOnSave": true
}