Joey889 commited on
Commit
e6042ee
·
verified ·
1 Parent(s): 3d50ac4

Upload 2 files

Browse files
Files changed (2) hide show
  1. tsconfig.app.json +13 -0
  2. tsconfig.node.json +11 -0
tsconfig.app.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "composite": true,
5
+ "outDir": "dist",
6
+ "types": [
7
+ "vite/client"
8
+ ]
9
+ },
10
+ "include": [
11
+ "src"
12
+ ]
13
+ }
tsconfig.node.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "composite": true,
5
+ "module": "ESNext",
6
+ "moduleResolution": "Node"
7
+ },
8
+ "include": [
9
+ "vite.config.ts"
10
+ ]
11
+ }