Vim/tsconfig.json
Jason Fields 89b88ab1b7 Update typescript target/lib to ES2019
This way we don't get async/await compiled to an ugly state machine, which means a slightly nicer debug experience.
2020-03-26 17:21:20 -04:00

23 lines
456 B
JSON

{
"compilerOptions": {
"lib": [
"ES2019"
],
"module": "commonjs",
"target": "ES2019",
"outDir": "out",
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"suppressImplicitAnyIndexErrors": true,
"sourceMap": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"alwaysStrict": true,
},
"exclude": [
"node_modules",
"!node_modules/@types"
]
}