-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (44 loc) · 867 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
40
41
42
43
44
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist",
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"declaration": true,
"declarationDir": "./dist/types/",
"declarationMap": false,
"moduleResolution": "node",
"module": "esnext",
"target": "es5",
"baseUrl": "./",
"types": [
"node",
],
"resolveJsonModule": true,
"experimentalDecorators": true,
"typeRoots": [
"./node_modules/@types"
],
"lib": [
"ES2015"
],
"allowJs": true,
"paths": {
"tslib": [
"./node_modules/tslib/tslib.d.ts"
]
},
},
"include": [
"src/**/*.ts",
"@types/jest",
],
"exclude": [
"node_modules",
"example",
"tests/**/*.test.ts"
]
}