mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"composite": true,
|
|
"module": "commonjs",
|
|
"noImplicitReturns": true,
|
|
"outDir": "./lib",
|
|
"tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"resolveJsonModule": 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",
|
|
"package.json",
|
|
"backend/api/package.json"
|
|
]
|
|
}
|