-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 843 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
{
"compilerOptions": {
"target": "es5",
"lib": ["es5", "es6"],
"module": "commonjs",
"outDir": "dist",
"moduleResolution": "node",
"baseUrl": "src",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
// "paths": {
// "@google-cloud/text-to-speech": ["typings/@google-cloud/text-to-speech"],
// "audioconcat": ["typings/audioconcat"],
// "mp3-duration": ["typings/mp3-duration"],
// "polly-ssml-split": ["typings/polly-ssml-split"],
// "express-async-errors": ["typings/express-async-errors"]
// },
"plugins": [
{ "name": "typescript-tslint-plugin" }
]
},
"include": [
"src/**/*",
],
"exclude": [
"node_modules",
],
}