forked from alexa/alexa-skills-kit-sdk-for-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
39 lines (39 loc) · 826 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
{
"compilerOptions" : {
"target" : "es5",
"module" : "commonjs",
"moduleResolution": "node",
"outDir" : "dist",
"sourceMap" : true,
"alwaysStrict" : true,
"declaration" : true,
"lib": [
"es2017",
"dom"
]
},
"include" : [
"ask-sdk/lib",
"ask-sdk-core/lib",
"ask-sdk-dynamodb-persistence-adapter/lib",
"ask-sdk-runtime/lib",
"ask-sdk-s3-persistence-adapter/lib",
"ask-sdk-v1adapter/lib",
"ask-sdk-express-adapter/lib",
"ask-smapi-sdk/lib"
],
"exclude" : [
"node_modules"
],
"typedocOptions": {
"name" : "ASK SDK for Node.js",
"readme" : "none",
"mode": "file",
"out": "typedoc",
"theme": "default",
"excludeExternals" : true,
"hideGenerator" : true,
"target": "ES6",
"module": "commonjs"
}
}