-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig-gas.json
56 lines (51 loc) · 1.58 KB
/
tsconfig-gas.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
{
"compilerOptions": {
"composite": true,
"incremental": true,
// Enforce strict coding style
"strict": true,
"alwaysStrict": true,
// "allowUnreachableCode": false,
// "allowUnusedLabels": false,
// "downlevelIteration": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
// "suppressExcessPropertyErrors": false,
// "suppressImplicitAnyIndexErrors": false,
// Enable latest Javascriptt syntax and target V8 engine
"experimentalDecorators": true,
"lib": ["ESNext"],
"target": "ES2018",
// Limit use of `export` statements
"module": "None",
"moduleResolution": "node",
// "allowSyntheticDefaultImports": false,
// "esModuleInterop": false,
// "importHelpers": false,
// Define files produced by the compiler
"newLine": "lf",
"noEmitOnError": true,
// "declaration": false,
// "declarationMap": false,
// "noResolve": false,
// "preserveConstEnums": false,
// "removeComments": false,
"rootDir": ".",
// "sourceMap": false,
// "stripInternal": false,
// Make Google Apps Script type definitions ambient
// "noLib": false,
// "skipLibCheck": false,
"types": ["google-apps-script"],
// "typeRoots": ["src/types", "node_modules/@types"],
}
}