mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-01 02:18:26 -05:00
56 lines
1019 B
JSON
56 lines
1019 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"composite": true,
|
|
"module": "commonjs",
|
|
"noImplicitReturns": true,
|
|
"outDir": "./lib",
|
|
"tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "esnext",
|
|
"skipLibCheck": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"common/*": [
|
|
"../../common/src/*",
|
|
"../../../common/lib/*"
|
|
],
|
|
"shared/*": [
|
|
"../shared/src/*",
|
|
"../../shared/lib/*"
|
|
],
|
|
"email/*": [
|
|
"../email/emails/*",
|
|
"../../email/lib/*"
|
|
],
|
|
"api/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"require": [
|
|
"tsconfig-paths/register"
|
|
]
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../common"
|
|
},
|
|
{
|
|
"path": "../shared"
|
|
},
|
|
{
|
|
"path": "../email"
|
|
}
|
|
],
|
|
"compileOnSave": true,
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"openapi.json"
|
|
]
|
|
}
|