Mercurial > code > home > repos > streamed-graph
view tsconfig.json @ 27:e0f5da648199
fix getter, startup expanded state, better display before 1st data (but that one might not work)
author | drewp@bigasterisk.com |
---|---|
date | Fri, 13 Dec 2019 23:53:56 -0800 |
parents | 86270a59ae7b |
children | 45ed53428e74 db0e9cbf52e5 |
line wrap: on
line source
{ "compilerOptions": { "alwaysStrict": true, "declaration": true, "experimentalDecorators": true, "lib": [ "es6", "dom" ], "module": "commonjs", "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "outDir": "./build/js", // "strict": true, "strictFunctionTypes": true, "strictNullChecks": true, "strictPropertyInitialization": true, "target": "es6", // "allowSyntheticDefaultImports": true, // "baseUrl": "./", // "emitDecoratorMetadata": true, "esModuleInterop": true, // "noUnusedLocals": true, // "noUnusedParameters": true, "rootDir": ".", // "types": [ "node", "jest" ], "sourceMap": true }, "include": [ "src/**/*.ts" ], "exclude": [ "src/**/*.test.ts" ] }