forked from Hubs-Foundation/hubs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 708 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 708 Bytes
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
{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"strictNullChecks": true,
"moduleResolution": "node",
"moduleDetection": "auto",
"module": "es2020",
"target": "es2020",
"jsx": "react",
"allowSyntheticDefaultImports": true,
// TODO: enable and work through the many trivial issues
// "importsNotUsedAsValues": "error",
// "preserveValueImports": true,
// "strict": false,
"allowJs": true,
"noEmit": true,
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types", "./types"]
},
"include": ["types/", "src/"]
}