Files
static-testing-tools/07-run-the-validate-script-in-a-pre-commit-git-hook-with-husky/tsconfig.json
2019-07-31 17:10:32 -06:00

12 lines
337 B
JSON

{
"compilerOptions": {
"target": "esnext",
"moduleResolution": "node",
// 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
},
"include": ["src"]
}