discord-vscode/tsconfig.json

25 lines
381 B
JSON
Raw Normal View History

2017-11-23 13:06:21 +00:00
{
"compilerOptions": {
"strict": true,
2017-11-23 13:06:21 +00:00
"module": "commonjs",
"target": "es6",
"lib": [
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.intl",
"esnext.symbol"
2017-11-23 13:06:21 +00:00
],
"declaration": true,
"sourceMap": true,
"removeComments": false,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
]
2017-11-23 13:06:21 +00:00
},
"include": [
"./src"
2017-11-23 13:06:21 +00:00
]
}