mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-25 11:27:09 -05:00
42 lines
1013 B
JSON
42 lines
1013 B
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"],
|
|
"exclude": ["**/*.test.ts", "**/*.spec.ts"]
|
|
}
|