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.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/schemas/tsconfig.json b/test/schemas/tsconfig.json
new file mode 100644
index 0000000..fe51c68
--- /dev/null
+++ b/test/schemas/tsconfig.json
@@ -0,0 +1,17 @@
+{
+ "compilerOptions": {
+ "declaration": true,
+ "esModuleInterop": true,
+ "lib": ["es5", "es2015.promise"],
+ "module": "commonjs",
+ "moduleResolution": "node",
+ "outDir": "../lib/umd",
+ "resolveJsonModule": true,
+ "sourceMap": true,
+ "strict": true,
+ "stripInternal": true,
+ "target": "es5"
+ },
+ "exclude": ["node_modules"],
+ "include": ["src/**/*"]
+}