Mercurial > code > home > repos > streamed-graph
view tsconfig.json @ 29:45ed53428e74
fix configs to run tests (all in one bundle though)
author | drewp@bigasterisk.com |
---|---|
date | Sun, 15 Dec 2019 21:18:42 -0800 |
parents | 86270a59ae7b |
children | e54941d93356 |
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": ["jest"], "sourceMap": true }, "include": [ "src/**/*.ts" ] }