www/lambdas/tsconfig.json

26 lines
561 B
JSON
Raw Normal View History

2022-10-17 15:17:13 +03:00
{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"lib": ["ESNext"],
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"sourceMap": true,
"target": "ES2020",
2022-10-18 08:31:32 +03:00
"outDir": "lib",
"allowSyntheticDefaultImports": true
2022-10-17 15:17:13 +03:00
},
"include": ["src/**/*.ts", "serverless.ts"],
"exclude": [
"node_modules/**/*",
".serverless/**/*",
".webpack/**/*",
"_warmup/**/*",
".vscode/**/*"
],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}