forked from WorldBrain/Memex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 1.27 KB
/
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
{
"compilerOptions": {
"baseUrl": ".",
"allowJs": true,
"target": "es6",
"module": "ES2015",
"moduleResolution": "node",
"jsx": "react",
"noImplicitAny": false,
"sourceMap": true,
"importHelpers": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strictNullChecks": false,
"outDir": "tmp",
"paths": {
"@worldbrain/storex": ["external/@worldbrain/storex/ts"],
"@worldbrain/storex/lib/*": ["external/@worldbrain/storex/ts/*"],
"@worldbrain/storex-backend-dexie": [
"external/@worldbrain/storex-backend-dexie/ts"
],
"@worldbrain/storex-backend-dexie/lib/*": [
"external/@worldbrain/storex-backend-dexie/ts/*"
],
"@worldbrain/memex-stemmer": [
"external/@worldbrain/memex-stemmer/ts"
],
"src/*": ["src/*"]
},
"lib": ["es2017", "dom", "dom.iterable", "esnext.asynciterable"]
},
"include": ["./src/**/*"],
"exclude": ["node_modules", "./src/**/*.js", "./src/**/*.jsx"]
}