From 8af47c91d0234da2ed74434b8688f31bbdd52953 Mon Sep 17 00:00:00 2001 From: Cesar Varela Date: Thu, 6 Jun 2024 17:42:16 -0300 Subject: [PATCH] Enable json module loading (#2822) --- site/gatsby-site/playwright/tsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 site/gatsby-site/playwright/tsconfig.json diff --git a/site/gatsby-site/playwright/tsconfig.json b/site/gatsby-site/playwright/tsconfig.json new file mode 100644 index 0000000000..63eacc9ed3 --- /dev/null +++ b/site/gatsby-site/playwright/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "commonjs", + "moduleResolution": "Node", + "sourceMap": true, + "outDir": "../tests-out", + "resolveJsonModule": true, + "esModuleInterop": true, + } +} \ No newline at end of file