console/packages/migrations/tsconfig.json

28 lines
750 B
JSON
Raw Normal View History

{
"compilerOptions": {
2024-04-07 08:57:03 +00:00
"target": "ESNext",
"module": "ESNext",
"rootDir": "./",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"allowJs": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"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"]
}
},
"include": ["src"]
}