mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
20 lines
423 B
JSON
20 lines
423 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"composite": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"outDir": "lib",
|
|
"tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es2022",
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"common/*": ["./src/*", "../lib/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|