From 895e542fe613c5e31320f790f4c881e9331751be Mon Sep 17 00:00:00 2001 From: Jordan Last Date: Thu, 19 Oct 2023 17:36:58 -0500 Subject: [PATCH] adding gitkeep and module to tsconfig --- property_tests/tests/query_methods/src/.gitkeep | 0 property_tests/tests/query_methods/tsconfig.json | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100644 property_tests/tests/query_methods/src/.gitkeep create mode 100644 property_tests/tests/query_methods/tsconfig.json diff --git a/property_tests/tests/query_methods/src/.gitkeep b/property_tests/tests/query_methods/src/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/property_tests/tests/query_methods/tsconfig.json b/property_tests/tests/query_methods/tsconfig.json new file mode 100644 index 0000000000..1c863e7a5f --- /dev/null +++ b/property_tests/tests/query_methods/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "strict": true, + "target": "ES2020", + "module": "CommonJS", + "moduleResolution": "node", + "allowJs": true, + "outDir": "HACK_BECAUSE_OF_ALLOW_JS" + } +}