-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
31 lines (31 loc) · 950 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "dist",
"rootDir": "src",
"noUnusedLocals": true,
"inlineSourceMap": true,
"inlineSources": true,
"skipDefaultLibCheck": true,
"declaration": true,
"strict": true,
"moduleResolution": "node",
"skipLibCheck": true,
"experimentalDecorators": true,
"importHelpers": true,
"noEmitHelpers": true,
"allowSyntheticDefaultImports": true,
"lib": ["es6", "es2017.object"],
"types": ["node"],
"typeRoots": ["./node_modules/@types"],
"plugins": [
{
"name": "tslint-language-service",
"alwaysShowRuleFailuresAsWarnings": true,
"ignoreDefinitionFiles": true
}
]
},
"exclude": ["dist", "@types", "examples"]
}