cp500 commited on
Commit
fb70733
·
verified ·
1 Parent(s): c2597fe

Upload js/tsconfig.json with huggingface_hub

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