SNAPKITTYWEST commited on
Commit
d0a66ea
·
verified ·
1 Parent(s): 462f867

Upload tsconfig.json

Browse files
Files changed (1) hide show
  1. tsconfig.json +18 -0
tsconfig.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ESNext",
5
+ "moduleResolution": "Bundler",
6
+ "strict": true,
7
+ "lib": [
8
+ "ES2022",
9
+ "DOM"
10
+ ],
11
+ "noEmit": true,
12
+ "skipLibCheck": true,
13
+ "allowImportingTsExtensions": true
14
+ },
15
+ "include": [
16
+ "src"
17
+ ]
18
+ }