12 lines
337 B
JSON
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"]
|
|
}
|