mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-02 02:48:02 -05:00
25 lines
616 B
JSON
25 lines
616 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/*"]
|
|
}
|
|
},
|
|
"references": [{ "path": "../../common" }],
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"]
|
|
}
|