forked from Bolisov/google-api-typings-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.dot
More file actions
24 lines (24 loc) · 656 Bytes
/
tsconfig.dot
File metadata and controls
24 lines (24 loc) · 656 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
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": {{? it.actualVersion }}"../"{{?}}{{? !it.actualVersion }} "../../" {{?}},
"typeRoots": [
{{? it.actualVersion }}"../"{{?}}{{? !it.actualVersion }}"../../"{{?}}
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"strictFunctionTypes": true
},
"files": [
"index.d.ts",
"gapi.client.{{=it.name}}-tests.ts"
]
}