summaryrefslogtreecommitdiffstats
path: root/test/schemas/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'test/schemas/tsconfig.json')
-rw-r--r--test/schemas/tsconfig.json10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/schemas/tsconfig.json b/test/schemas/tsconfig.json
index fe51c68..b2291af 100644
--- a/test/schemas/tsconfig.json
+++ b/test/schemas/tsconfig.json
@@ -2,16 +2,16 @@
"compilerOptions": {
"declaration": true,
"esModuleInterop": true,
- "lib": ["es5", "es2015.promise"],
- "module": "commonjs",
+ "lib": ["ESNext"],
+ "module": "esnext",
"moduleResolution": "node",
- "outDir": "../lib/umd",
+ "outDir": "../../.tox/out",
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"stripInternal": true,
- "target": "es5"
+ "target": "ESNext",
},
"exclude": ["node_modules"],
- "include": ["src/**/*"]
+ "include": ["src/**/*"],
}