Mercurial > code > home > repos > streamed-graph
view tsconfig.json @ 70:97903fa9b12f
switch to pnpm lockfile
author | drewp@bigasterisk.com |
---|---|
date | Mon, 10 Feb 2020 16:57:46 -0800 |
parents | b8e5850acca0 |
children | 7c93e17b1111 |
line wrap: on
line source
{ "compilerOptions": { "strict": true, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitThis": true, "strictFunctionTypes": true, "strictNullChecks": true, "strictPropertyInitialization": true, "alwaysStrict": true, "types": ["jest"], "module": "ES6", "target": "ES6", "moduleResolution": "node", "sourceMap": true, "declaration": true, "experimentalDecorators": true, "allowJs": true, "esModuleInterop": true, "traceResolution": true, // "allowSyntheticDefaultImports": true, // "rootDir": ".", // "outDir": "./build", "baseUrl": "." // "emitDecoratorMetadata": true, // "lib": [ "es6", "dom" ], }, "include": ["src/**/*.ts"] // "exclude": ["src/**/*.test.ts"] }