forked from aiden/rpc_ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 873 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
{
"version": "3.2.2",
"compilerOptions": {
"outDir": "./build",
"rootDir": "./src",
"target": "es2017",
"noImplicitAny": true,
"alwaysStrict": true,
"sourceMap": true,
"skipLibCheck": true,
"pretty": true,
"plugins": [
{
"name": "tslint-language-service"
}
],
"typeRoots": ["./node_modules/@types", "./node_modules"],
"types": ["node", "mocha"],
"lib": ["es7", "es2017", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"rpc_ts/*": ["./*"],
"rpc_ts": ["./"]
}
},
"include": ["src/**/*"],
"exclude": ["./node_modules"],
"compileOnSave": true,
"watch": true
}