rust/editors/code/tsconfig.json

29 lines
627 B
JSON
Raw Normal View History

2018-07-30 13:58:49 -05:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
2018-07-30 13:58:49 -05:00
"outDir": "out",
2019-12-29 19:22:52 -06:00
"lib": [
"es2019"
2019-12-29 19:22:52 -06:00
],
2018-07-30 13:58:49 -05:00
"sourceMap": true,
2020-05-20 13:03:49 -05:00
"rootDir": ".",
"strict": true,
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
2019-12-30 16:30:35 -06:00
"noFallthroughCasesInSwitch": true,
"newLine": "LF"
2018-07-30 13:58:49 -05:00
},
2019-12-29 19:22:52 -06:00
"exclude": [
2020-05-20 13:03:49 -05:00
"node_modules",
".vscode-test"
],
"include": [
"src",
2021-02-09 04:39:40 -06:00
"tests",
2022-02-09 11:13:04 -06:00
"vscode.proposed.inlayHints.d.ts"
2019-12-29 19:22:52 -06:00
]
2018-08-10 17:04:09 -05:00
}