mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-25 11:27:09 -05:00
33 lines
744 B
JSON
33 lines
744 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"composite": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"outDir": "lib",
|
|
"tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["esnext"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"common/*": ["../../common/src/*", "../../../common/lib/*"],
|
|
"shared/*": ["./src/*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"require": ["tsconfig-paths/register"]
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../common"
|
|
}
|
|
],
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["**/*.test.ts", "**/*.spec.ts"]
|
|
}
|