mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-23 18:36:02 -05:00
* Test * Add pretty formatting * Fix Tests * Fix Tests * Fix Tests * Fix * Add pretty formatting fix * Fix * Test * Fix tests * Clean typeckech * Add prettier check * Fix api tsconfig * Fix api tsconfig * Fix tsconfig * Fix * Fix * Prettier
28 lines
776 B
JSON
28 lines
776 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"noImplicitReturns": true,
|
|
"outDir": "./lib",
|
|
"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"]
|
|
},
|
|
"compileOnSave": true,
|
|
"include": ["src/**/*.ts", "package.json", "backend/api/package.json"],
|
|
"exclude": ["**/*.test.ts", "**/*.spec.ts"]
|
|
}
|