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": { "compilerOptions": {
"target": "es2016", "baseUrl": ".",
"jsx": "react-jsx",
"module": "commonjs",
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"module": "commonjs",
"skipLibCheck": true,
"strict": true, "strict": true,
"skipLibCheck": true "target": "es2016",
}, },
"include": ["src/**/*"] "include": ["src/**/*"]
} }