comparison service/mqtt_to_rdf/tsconfig.json @ 1533:a598d2141587

more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page Ignore-this: 85e2ab49915e44b08219e537fab21870 darcs-hash:f2d312ec10bb4a33c501a24bd7d11a1f35673f25
author drewp <drewp@bigasterisk.com>
date Sat, 08 Feb 2020 04:02:22 -0800
parents
children
comparison
equal deleted inserted replaced
1532:7cc7700302c2 1533:a598d2141587
1 {
2 "compilerOptions": {
3 "strict": true,
4 "noFallthroughCasesInSwitch": true,
5 "noImplicitAny": true,
6 "noImplicitReturns": true,
7 "noImplicitThis": true,
8 "strictFunctionTypes": true,
9 "strictNullChecks": true,
10 "strictPropertyInitialization": true,
11 "alwaysStrict": true,
12
13 "types": [],
14
15 "module": "ES6",
16 "target": "ES6",
17 "moduleResolution": "node",
18 "sourceMap": true,
19 "declaration": true,
20 "experimentalDecorators": true,
21 "allowJs": true,
22 "esModuleInterop": true,
23 "traceResolution": true,
24 // "allowSyntheticDefaultImports": true,
25 // "rootDir": ".",
26 // "outDir": "./build",
27 "baseUrl": "."
28 // "emitDecoratorMetadata": true,
29 // "lib": [ "es6", "dom" ],
30 },
31 "include": ["src/**/*.ts"]
32 // "exclude": ["src/**/*.test.ts"]
33 }