Files
static-testing-tools/tsconfig.json
Kent C. Dodds a5d2d971dd add typescript
2019-08-14 11:59:13 -06:00

10 lines
283 B
JSON

{
"compilerOptions": {
// because we're compiling with Babel instead of TypeScript
// and we're only using TypeScript for type checking, we'll set "noEmit"
// to true so running type checking doesn't generate any files.
"noEmit": true,
"baseUrl": "./src"
}
}