comparison tsconfig.json @ 0:3f2da406c788

start
author drewp@bigasterisk.com
date Tue, 21 Jul 2020 23:28:04 -0700
parents
children b73941c4dc0a
comparison
equal deleted inserted replaced
-1:000000000000 0:3f2da406c788
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", "ES2019.Object" ],
30 },
31 "include": ["src/**/*.ts"]
32 // "exclude": ["src/**/*.test.ts"]
33 }