forked from SitePen/TypeScript-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 702 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 702 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
30
31
32
33
{
"version": "1.8.0",
"compilerOptions": {
"declaration": false,
"module": "umd",
"noImplicitAny": true,
"outDir": "_build/",
"removeComments": false,
"sourceMap": true,
"target": "es5"
},
"filesGlob": [
"./typings/index.d.ts",
"./src/**/*.ts",
"./tests/**/*.ts"
],
"files": [
"./typings/index.d.ts",
"./src/ex1-typing.ts",
"./src/ex2-interfaces.ts",
"./src/ex3-functiontypes.ts",
"./src/ex4-arraytypes.ts",
"./src/ex5-unionAndExtension.ts",
"./src/ex6-generics.ts",
"./src/ex7-classes.ts",
"./src/ex8-modules.ts",
"./tests/intern-local.ts",
"./tests/intern.ts",
"./tests/support/Reporter.ts",
"./tests/support/util.ts",
"./tests/unit/all.ts"
]
}