2023-01-18 07:54:47 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-04-07 08:57:03 +00:00
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
2023-01-18 07:54:47 +00:00
|
|
|
"rootDir": "./",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"moduleResolution": "node",
|
2024-02-06 11:10:19 +00:00
|
|
|
"strict": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@hive/cdn-script/artifact-storage-reader": [
|
|
|
|
|
"../services/cdn-worker/src/artifact-storage-reader.ts"
|
2024-04-07 08:57:03 +00:00
|
|
|
],
|
|
|
|
|
"@hive/storage": ["../services/storage/src/index.ts"],
|
|
|
|
|
"@hive/service-common": ["../services/service-common/src/index.ts"]
|
2024-02-06 11:10:19 +00:00
|
|
|
}
|
2023-01-18 07:54:47 +00:00
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|