-
Notifications
You must be signed in to change notification settings - Fork 24
/
tsconfig.json
38 lines (38 loc) · 962 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"compilerOptions": {
"noEmit": true,
"module": "ES2022",
"noImplicitAny": true,
"removeComments": true,
"sourceMap": true,
"moduleResolution": "node",
"outDir": "build",
"jsx": "react-jsx",
"strict": true,
"target": "es2021",
"types": [], //reconsider this later
"skipLibCheck": true, //reconsider this later
"allowSyntheticDefaultImports": true,
"baseUrl": "./frontend/javascripts",
"lib": [
"ES2021",
"dom",
],
"paths": {
"oxalis/*": ["./oxalis/*"],
"libs/*": ["./libs/*"],
"dashboard/*": ["./dashboard/*"],
"components/*": ["./components/*"],
"admin/*": ["./admin/*"],
"types/*": ["./types/*"],
"test/*": ["./test/*"],
"features": ["./features.ts"]
}
},
"include": [
"frontend/javascripts/**/*.ts",
"frontend/javascripts/**/*.d.ts",
"frontend/javascripts/**/*.tsx"
],
"exclude": ["node_modules/**/*"]
}