think/packages/server/tsconfig.json

32 lines
857 B
JSON
Raw Permalink Normal View History

2022-02-20 11:51:55 +00:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2019",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {
"@helpers/*": ["src/helpers/*"],
"@pipes/*": ["src/pipes/*"],
"@transforms/*": ["src/transforms/*"],
"@exceptions/*": ["src/exceptions/*"],
"@guard/*": ["src/guard/*"],
"@dtos/*": ["src/dtos/*"],
"@entities/*": ["src/entities/*"],
"@services/*": ["src/services/*"],
"@controllers/*": ["src/controllers/*"],
2022-06-29 16:03:02 +00:00
"@modules/*": ["src/modules/*"],
"@constants/*": ["src/constants"]
2022-02-20 11:51:55 +00:00
}
2022-06-04 09:01:33 +00:00
},
"watchOptions": {
"excludeFiles": ["static"]
2022-02-20 11:51:55 +00:00
}
}