-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
39 lines (37 loc) · 964 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
39
{
"compilerOptions": {
"baseUrl": "./",
"sourceRoot": "./",
"sourceMap": true,
"strict": true,
"module": "esnext",
"moduleResolution": "node",
"allowJs": false,
"lib": [
"esnext",
"dom"
],
"jsx": "preserve",
"noImplicitReturns": true,
"downlevelIteration": true,
"noEmit": true,
"noImplicitAny": true,
"allowUnreachableCode": true,
"paths": {
"cg-webworker/core": ["./src/core"],
"cg-webworker/datastore": ["./src/datastore"],
"cg-webworker/react": ["./src/react"],
},
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"test/**/*.ts"
],
"excludeDirectories": [
"**/node_modules",
"dist",
"example"
]
}
// Typescript config for type-checking of Lib and Tests (named as default, so it can be used by IDE)