DigitalConsumer.ISS/playwright-tests/tsconfig.json
chase-safelite 5d3ab0ef59
Added playwright tests into repo (#923)
* Initial import of playwright tests

* Pipeline changes for automated tests

* Modified pipeline for testing

* Attempt #2

* Attempt #3

* Added missing paren

* Removed debug stuff from pipeline

* Changes from playwright repo

* Changed pipeline for debugging

* Fix for ServiceLocationPage playwright locators

* Change pipeline to run with TEST APIs

* Moved more of Siraj's changes to this repo

* Changed where updating env occurs

* Changed location of env update again

* Escaped double quotes

* Added visible report in Azure

* Moved changes into main pipeline

* Made it so dotenv only runs config in local
2025-02-14 09:54:11 -05:00

62 lines
No EOL
1.2 KiB
JSON

{
"compilerOptions": {
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"noImplicitAny": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"rootDirs": [
"./impl",
"./business-logic"
],
"paths": {
"@impl/*": [
"./impl/*"
],
"@api/*": [
"./impl/api/*"
],
"@controller/*": [
"./impl/api/controller/*"
],
"@model/*": [
"./impl/api/model/*"
],
"@gui/*": [
"./impl/gui/*"
],
"@lfm/*": [
"./impl/gui/lfm/*"
],
"@pom/*": [
"./impl/gui/pom/*"
],
"@mixins/*": [
"./impl/gui/mixins"
],
"@business-logic/*": [
"./business-logic/*"
],
"@validations/*": [
"./business-logic/validations/*"
],
"@workflows/*": [
"./business-logic/workflows/*"
],
"@helpers/*": [
"./helpers/*"
],
"@tests/*": [
"./tests/*"
],
"@utils/*": [
"./impl/utils/*"
],
}
}
}