10 lines
283 B
JSON
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"
|
|
}
|
|
}
|