toolkit/tsconfig.json
Jonathan Clem f026c43b81
Add working Jest & TypeScript config
- Jest now uses ts-jest for transforms
- TypeScript compilation via `lerna run tsc`
2019-04-19 15:15:34 -04:00

14 lines
223 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"strict": true,
"declaration": true,
"target": "es6",
"sourceMap": true,
"lib": ["es6"]
},
"exclude": [
"node_modules",
"**/*.test.ts"
]
}