-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
60 lines (60 loc) · 1.97 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"version": "1.8.0",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"outDir": "./lib/"
},
"filesGlob": [
"typings/*.ts",
"src/**/*.ts",
"examples/**/*.ts",
"test/**/*.ts"
],
"files": [
"typings/main.d.ts",
"typings/yadda.d.ts",
"src/authentication.ts",
"src/authorizedResource.ts",
"src/authorizedSubResource.ts",
"src/index.ts",
"src/resource.ts",
"src/subResource.ts",
"src/userResource.ts",
"examples/authentication/app.ts",
"examples/authentication/resources/parent.ts",
"examples/authentication/resources/sub.ts",
"examples/authentication/resources/user.ts",
"examples/customResource/app.ts",
"examples/customResource/resourceDefinitions/boomerangResource.ts",
"examples/customResource/resources/boomerang.ts",
"examples/foods/app.ts",
"examples/foods/resources/dish.ts",
"examples/foods/resources/food.ts",
"examples/foods/resources/list.ts",
"examples/subresource/app.ts",
"examples/subresource/resources/parent.ts",
"examples/subresource/resources/ref.ts",
"examples/subresource/resources/sub.ts",
"test/authentication/authentication.spec.ts",
"test/authentication/definitions/authentication.steps.ts",
"test/customResource/customResource.spec.ts",
"test/customResource/definitions/customResource.steps.ts",
"test/foods/definitions/foods.steps.ts",
"test/foods/foods.spec.ts",
"test/subresource/definitions/sub.steps.ts",
"test/subresource/subresource.spec.ts"
],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2,
"convertTabsToSpaces": true
},
"atom": {
"rewriteTsconfig": true
}
}