Files
suwayomi-material-you-webui/tools/scripts/tsconfig.json
schroda 2f795b9d38 Fix/tools scripts tsconfig and linting (#406)
* [Tools] Fix linting

* [Tools] Fix yargs tsc issue
2023-08-15 22:20:24 +02:00

17 lines
358 B
JSON

{
"extends": "../../tsconfig.json",
"include": [
"./*"
],
"compilerOptions": {
"moduleResolution": "node"
},
"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"
}
}
}