aboutsummaryrefslogtreecommitdiff
path: root/lib/admin/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-07-12 01:28:23 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-07-12 01:28:23 -0400
commitf64955c69d91e578e580b409ba31ac4b3477da96 (patch)
tree16f01392ddf1abfea13d7d1ede3bfb0459fe8f0d /lib/admin/tsconfig.json
Initial commit
Diffstat (limited to 'lib/admin/tsconfig.json')
-rw-r--r--lib/admin/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/admin/tsconfig.json b/lib/admin/tsconfig.json
new file mode 100644
index 0000000..bda23a0
--- /dev/null
+++ b/lib/admin/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "ES6",
+ "module": "ES2015",
+ "moduleResolution": "node",
+ "declaration": true,
+ "outDir": "./dist",
+ "strict": true,
+
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true,
+
+ "lib": [
+ "es2016",
+ "dom",
+ "es5"
+ ]
+ },
+ "include": [ "./src/**/*"],
+ "exclude": [
+ "node_modules",
+ "**/__tests__/*"
+ ]
+} \ No newline at end of file