Corin1998 commited on
Commit
2cf694d
·
verified ·
1 Parent(s): 6a2c6d1

Create tsconfig.json

Browse files
Files changed (1) hide show
  1. frontend/tsconfig.json +13 -0
frontend/tsconfig.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
5
+ "jsx": "react-jsx",
6
+ "module": "ESNext",
7
+ "moduleResolution": "Bundler",
8
+ "strict": true,
9
+ "baseUrl": ".",
10
+ "paths": { "@/*": ["src/*"] }
11
+ },
12
+ "include": ["src"]
13
+ }