annotate tsconfig.json @ 7:f0d549ec5e59 default tip

deployment and hostname
author drewp@bigasterisk.com
date Mon, 23 Sep 2024 01:24:48 -0700
parents f92cec01b59e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
1 {
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
2 "compilerOptions": {
1
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
3 "allowSyntheticDefaultImports": true,
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
4 "alwaysStrict": true,
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
5 "forceConsistentCasingInFileNames": true,
0
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
6 "noFallthroughCasesInSwitch": true,
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
7 "noImplicitAny": true,
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
8 "noImplicitReturns": true,
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
9 "noImplicitThis": true,
1
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
10 "strict": true,
0
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
11 "strictFunctionTypes": true,
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
12 "strictNullChecks": true,
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
13 "strictPropertyInitialization": true,
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
14
1
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
15 "allowJs": true,
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
16 "declaration": true,
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
17 "downlevelIteration": true,
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
18 "esModuleInterop": true,
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
19 "experimentalDecorators": true,
0
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
20 "module": "ES6",
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
21 "moduleResolution": "node",
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
22 "sourceMap": true,
1
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
23 "target": "ES6",
0
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
24 "traceResolution": true,
1
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
25 "useDefineForClassFields": false,
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
26
0
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
27 "baseUrl": ".",
1
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
28 "lib": ["es6", "dom", "ES2019.Object"],
f92cec01b59e merge with template project
drewp@bigasterisk.com
parents: 0
diff changeset
29 "types": []
0
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
30 },
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
31 "include": ["src/**/*.ts"]
3989f073ed9e start. hardcoded motion light in garage
drewp@bigasterisk.com
parents:
diff changeset
32 }