add baseUrl to cypress configs

This commit is contained in:
burnettk 2022-12-28 13:46:51 -05:00
parent 267b38fe41
commit 446933e9ca
1 changed files with 5 additions and 4 deletions

View File

@ -1,12 +1,13 @@
{
"compilerOptions": {
"target": "es2016",
"jsx": "react-jsx",
"module": "commonjs",
"baseUrl": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"module": "commonjs",
"skipLibCheck": true,
"strict": true,
"skipLibCheck": true
"target": "es2016",
},
"include": ["src/**/*"]
}