14 lines
299 B
JSON
14 lines
299 B
JSON
|
|
{
|
||
|
|
"extends": "../../tsconfig.json",
|
||
|
|
"include": [
|
||
|
|
"./*"
|
||
|
|
],
|
||
|
|
"ts-node": {
|
||
|
|
// these options are overrides used only by ts-node
|
||
|
|
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|