diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/config.ts.out | 2 | ||||
-rw-r--r-- | cli/tests/module_graph/tsconfig.json | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/cli/tests/config.ts.out b/cli/tests/config.ts.out index 8f5cf7e39..9840dba2e 100644 --- a/cli/tests/config.ts.out +++ b/cli/tests/config.ts.out @@ -1,4 +1,4 @@ -[WILDCARD]Unsupported compiler options in "[WILDCARD]config.tsconfig.json" +[WILDCARD]Unsupported compiler options in "[WILDCARD]config.tsconfig.json". The following options were ignored: module, target error: TS2532 [ERROR]: Object is possibly 'undefined'. diff --git a/cli/tests/module_graph/tsconfig.json b/cli/tests/module_graph/tsconfig.json new file mode 100644 index 000000000..a4c5f4f33 --- /dev/null +++ b/cli/tests/module_graph/tsconfig.json @@ -0,0 +1,6 @@ +{ + "compilerOptions": { + "target": "ES5", + "jsx": "preserve" + } +} |