summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorYuqi Feng <freach@freach.ltd>2022-08-25 14:05:52 +0000
committerYuqi Feng <freach@freach.ltd>2022-08-25 14:05:52 +0000
commit5bd046abd8fdab4f6f49564e8ce2f6e4c22d859c (patch)
treef18fbcaf6276a3cb822ce9999f0202267799f7b1 /tsconfig.json
First release
Diffstat (limited to 'tsconfig.json')
-rwxr-xr-xtsconfig.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100755
index 0000000..9ed6a90
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ // https://v3.nuxtjs.org/concepts/typescript
+ "extends": "./.nuxt/tsconfig.json",
+ "compilerOptions": {
+ "baseUrl": ".",
+ "jsx": "preserve",
+ "paths": {
+ "~/*": ["./*"],
+ "@/*": ["./*"],
+ "~~/*": ["./*"],
+ "@@/*": ["./*"]
+ }
+ },
+ "exclude": ["node_modules", ".nuxt", ".output"]
+}