aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-03-12 14:02:05 +1100
committerTerry Truong <terry06890@gmail.com>2022-03-12 14:02:05 +1100
commit097e23dde42613a0430f85c087dee9377f2e91af (patch)
tree3d4dfab25a27229cc8614febca5c4dec522c8b7e /tsconfig.json
parent542b2866682642f73ffd5ba6917f94c8c54603a0 (diff)
Make basic conversion to typescript
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..bdb5432
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"],
+ "compilerOptions": {
+ "strict": true,
+ "moduleResolution": "node",
+ "target": "esnext",
+ "module": "esnext",
+ "sourceMap": true,
+ "resolveJsonModule": true,
+ "esModuleInterop": true,
+ "isolatedModules": true,
+ "lib": ["esnext", "dom"],
+ "skipLibCheck": true
+ }
+}