mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-03 11:27:47 -05:00
33 lines
819 B
JSON
33 lines
819 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"composite": true,
|
|
"module": "commonjs",
|
|
"noImplicitReturns": true,
|
|
"outDir": "./lib",
|
|
"tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"esModuleInterop": 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"]
|
|
}
|