Я использую ts-node-dev
для компиляции и запуска моего приложения узла.
ts-node-dev -r tsconfig-paths/register src/collectDayMatches.ts
Но ts-node-dev
печать только ошибок времени выполнения (не ошибок ts).
если я использую tsc
для приложения для сборки, я получаю ошибки, как и ожидалось.
tsconfig. json:
{
"compilerOptions": {
"target": "es2019",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
"strict": true,
"inlineSourceMap": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"allowJs": false,
"lib": ["es2016", "esnext.asynciterable", "webworker"],
"types": ["node"],
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"pretty": true,
"baseUrl": "./src",
"paths": {
"utils/*": ["utils/*"]
}
}
}