-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
The local config is read as:
$ vue-tsc --showConfig
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"moduleResolution": "bundler",
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": "./",
"paths": {
"@frontend": [
"./src"
],
"@frontend/*": [
"./src/*"
],
"@backend": [
"../backend/src"
],
"@backend/*": [
"../backend/src/*"
],
"@backend/tests/*": [
"../backend/tests/*"
]
},
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"jsxImportSource": "vue",
"noImplicitThis": true,
"verbatimModuleSyntax": true,
"useDefineForClassFields": true,
"lib": [
"esnext",
"dom"
],
"types": [],
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"preserveConstEnums": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"strictBuiltinIteratorReturn": true,
"alwaysStrict": true,
"useUnknownInCatchVariables": true
},
"files": [
"./auto-imports.d.ts",
"./components.d.ts",
"./env.d.ts",
"./interface-extensions.d.ts",
"./src/main.ts",
"./src/core/index.ts",
"./src/core/plugins/api.ts",
"./src/core/router/router.ts",
"./src/features/data-processing/index.ts",
"./src/features/data-processing/composables/useColumnConversion.ts",
"./src/features/data-processing/composables/useColumnDataTypeIndicators.ts",
"./src/features/data-processing/composables/useColumnGeneration.ts",
"./src/features/data-processing/composables/useDataTypeCompatibility.ts",
"./src/features/data-processing/composables/useLanguageDropZone.ts",
"./src/features/data-processing/composables/__tests__/useColumnConversion.test.ts",
"./src/features/data-processing/composables/__tests__/useColumnDataTypeIndicators.test.ts",
"./src/features/data-processing/composables/__tests__/useColumnGeneration.test.ts",
"./src/features/data-processing/composables/__tests__/useDataTypeCompatibility.test.ts",
"./src/features/data-processing/composables/__tests__/useLanguageDropZone.test.ts",
"./src/features/data-processing/stores/drag-drop.store.ts",
"./src/features/project-management/index.ts",
"./src/features/project-management/composables/useProjectCreationComposable.ts",
"./src/features/project-management/composables/useProjectListComposable.ts",
"./src/features/project-management/stores/create-project.store.ts",
"./src/features/project-management/stores/project-list.store.ts",
"./src/features/project-management/stores/project.store.ts",
"./src/features/wikibase-schema/index.ts",
"./src/features/wikibase-schema/composables/usePropertySelection.ts",
"./src/features/wikibase-schema/composables/useRealTimeValidation.ts",
"./src/features/wikibase-schema/composables/useReferenceValueMapping.ts",
"./src/features/wikibase-schema/composables/useSchemaApi.ts",
"./src/features/wikibase-schema/composables/useSchemaBuilder.ts",
"./src/features/wikibase-schema/composables/useSchemaCompletenessValidation.ts",
"./src/features/wikibase-schema/composables/useSchemaDropZone.ts",
"./src/features/wikibase-schema/composables/useSchemaPersistence.ts",
"./src/features/wikibase-schema/composables/useSchemaValidationUI.ts",
"./src/features/wikibase-schema/composables/useStatementConfig.ts",
"./src/features/wikibase-schema/composables/useStatementDataTypeValidation.ts",
"./src/features/wikibase-schema/composables/useStatementDropZone.ts",
"./src/features/wikibase-schema/composables/useStatementEditor.ts",
"./src/features/wikibase-schema/composables/useStatementValidationDisplay.ts",
"./src/features/wikibase-schema/composables/useTermsEditor.ts",
"./src/features/wikibase-schema/composables/useValidationCore.ts",
"./src/features/wikibase-schema/composables/useValidationErrors.ts",
"./src/features/wikibase-schema/composables/useValueMapping.ts",
"./src/features/wikibase-schema/composables/__tests__/useDragDropValidationIntegration.test.ts",
"./src/features/wikibase-schema/composables/__tests__/usePropertySelection.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useRealTimeValidation.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useReferenceValueMapping.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useSchemaApi.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useSchemaCompletenessIntegration.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useSchemaCompletenessValidation.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useSchemaDropZone.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useSchemaValidationUI.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useStatementConfig.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useStatementDataTypeValidation.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useStatementDropZone.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useStatementEditor.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useStatementValidationDisplay.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useValidationCore.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useValidationErrors.test.ts",
"./src/features/wikibase-schema/composables/__tests__/useValueMapping.test.ts",
"./src/features/wikibase-schema/stores/schema.store.ts",
"./src/features/wikibase-schema/stores/validation.store.ts",
"./src/features/wikibase-schema/stores/__tests__/schema.store.test.ts",
"./src/features/wikibase-schema/stores/__tests__/validation-rules.store.test.ts",
"./src/features/wikibase-schema/stores/__tests__/validation.store.test.ts",
"./src/shared/index.ts",
"./src/shared/composables/useDragDropContext.ts",
"./src/shared/composables/useDragDropHandlers.ts",
"./src/shared/composables/useDropZoneStyling.ts",
"./src/shared/composables/useErrorHandling.ts",
"./src/shared/composables/useHtml.ts",
"./src/shared/composables/__tests__/useDragDropContext.test.ts",
"./src/shared/composables/__tests__/useDragDropHandlers.test.ts",
"./src/shared/stores/__tests__/drag-drop.store.test.ts",
"./src/shared/types/client-errors.ts",
"./src/shared/types/drag-drop.ts",
"./src/shared/types/index.ts",
"./src/shared/types/wikibase-schema.ts"
],
"exclude": [
"vite.config.*",
"vitest.config.*"
]
}...while in the GitHub Action, it is read with Vue files: https://github.com/DaxServer/dataforge/actions/runs/16721702051/job/47327398154
Metadata
Metadata
Assignees
Labels
No labels