forked from SitePen/dts-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 801 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 801 Bytes
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
{
"version": "1.6.2",
"compilerOptions": {
"target": "es5",
"module": "umd",
"declaration": false,
"noImplicitAny": true
},
"filesGlob": [
"./*.ts",
"./bin/**/*.ts",
"./tests/**/*.ts",
"./typings/tsd.d.ts",
"./node_modules/typescript/lib/typescript.d.ts",
"./node_modules/typescript/lib/typescript.ts"
],
"files": [
"./index.ts",
"./bin/dts-generator.ts",
"./tests/intern.ts",
"./tests/support/foo/Bar.ts",
"./tests/support/foo/index.ts",
"./tests/typings/dts-generator/dts-generator.d.ts",
"./tests/unit/all.ts",
"./tests/unit/index.ts",
"./typings/tsd.d.ts",
"./node_modules/typescript/lib/typescript.d.ts"
]
}