-
Notifications
You must be signed in to change notification settings - Fork 15
/
tsconfig.json
38 lines (38 loc) · 874 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": {
"strict": true,
"module": "CommonJS",
"moduleResolution": "Node",
"strictPropertyInitialization": false,
"strictNullChecks": true,
"noImplicitAny": true,
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2015",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"paths": {
"@iola/core/*": ["src/core/*"],
"@iola/core": ["src/core"],
"@iola/api/*": ["src/api/*"],
"@iola/api": ["src/api"],
"@iola/test/*": ["test/*"],
"@iola/test": ["test"]
},
"types": [
"reflect-metadata",
"jest",
"node"
],
"lib": [
"ESNext",
"dom"
]
},
"include": ["./src", "./test"]
}