comparison tsconfig.json @ 47:7d17a02b5ae0

reformats and minor edits
author drewp@bigasterisk.com
date Mon, 06 Jan 2020 23:52:30 -0800
parents 29d8ed02a275
children b8e5850acca0
comparison
equal deleted inserted replaced
46:709e305dbd4f 47:7d17a02b5ae0
9 "strictNullChecks": true, 9 "strictNullChecks": true,
10 "strictPropertyInitialization": true, 10 "strictPropertyInitialization": true,
11 "alwaysStrict": true, 11 "alwaysStrict": true,
12 12
13 "types": ["jest"], 13 "types": ["jest"],
14 14
15 "module": "ES6", 15 "module": "ES6",
16 "target": "ES6", 16 "target": "ES6",
17 "moduleResolution": "node", 17 "moduleResolution": "node",
18 "sourceMap": true, 18 "sourceMap": true,
19 "declaration": true, 19 "declaration": true,
20 "experimentalDecorators": true, 20 "experimentalDecorators": true,
21 "allowJs": true, 21 "allowJs": true,
22 "esModuleInterop": true, 22 "esModuleInterop": true,
23 "traceResolution": true,
23 // "allowSyntheticDefaultImports": true, 24 // "allowSyntheticDefaultImports": true,
24 // "rootDir": ".", 25 // "rootDir": ".",
25 // "outDir": "./build", 26 // "outDir": "./build",
26 // "baseUrl": "./build" 27 // "baseUrl": "./build"
27 // "emitDecoratorMetadata": true, 28 // "emitDecoratorMetadata": true,
28 // "lib": [ "es6", "dom" ], 29 // "lib": [ "es6", "dom" ],
29
30 }, 30 },
31 "include": ["src/**/*.ts"], 31 "include": ["src/**/*.ts"]
32 // "exclude": ["src/**/*.test.ts"] 32 // "exclude": ["src/**/*.test.ts"]
33 } 33 }