discord-vscode/tsconfig.json
2019-04-19 13:00:44 +02:00

24 lines
381 B
JSON

{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"target": "es6",
"lib": [
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.intl",
"esnext.symbol"
],
"declaration": true,
"sourceMap": true,
"removeComments": false,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./src"
]
}