mirror of
https://github.com/ivabus/www
synced 2024-11-10 14:45:14 +03:00
26 lines
561 B
JSON
26 lines
561 B
JSON
{
|
|
"extends": "./tsconfig.paths.json",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"target": "ES2020",
|
|
"outDir": "lib",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*.ts", "serverless.ts"],
|
|
"exclude": [
|
|
"node_modules/**/*",
|
|
".serverless/**/*",
|
|
".webpack/**/*",
|
|
"_warmup/**/*",
|
|
".vscode/**/*"
|
|
],
|
|
"ts-node": {
|
|
"require": ["tsconfig-paths/register"]
|
|
}
|
|
}
|