Mercurial > code > home > repos > streamed-graph
view tsconfig.json @ 24:09080dc809ed
webpack config might finally work
author | drewp@bigasterisk.com |
---|---|
date | Fri, 13 Dec 2019 23:05:12 -0800 |
parents | 549b74ad3c03 |
children | 86270a59ae7b |
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" ], }, "include": [ "src/**/*.ts" ], "exclude": [ "src/**/*.test.ts" ] }