diff options
author | Yuqi Feng <freach@freach.ltd> | 2022-08-25 14:05:52 +0000 |
---|---|---|
committer | Yuqi Feng <freach@freach.ltd> | 2022-08-25 14:05:52 +0000 |
commit | 5bd046abd8fdab4f6f49564e8ce2f6e4c22d859c (patch) | |
tree | f18fbcaf6276a3cb822ce9999f0202267799f7b1 /tsconfig.json |
First release
Diffstat (limited to 'tsconfig.json')
-rwxr-xr-x | tsconfig.json | 15 |
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"]
+}
|