rust/editors/code/tsconfig.json

27 lines
539 B
JSON
Raw Normal View History

2018-07-30 20:58:49 +02:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
2018-07-30 20:58:49 +02:00
"outDir": "out",
2019-12-30 02:22:52 +01:00
"lib": [
"es2019"
2019-12-30 02:22:52 +01:00
],
2018-07-30 20:58:49 +02:00
"sourceMap": true,
2020-05-20 20:03:49 +02:00
"rootDir": ".",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
2019-12-30 23:30:35 +01:00
"noFallthroughCasesInSwitch": true,
"newLine": "LF"
2018-07-30 20:58:49 +02:00
},
2019-12-30 02:22:52 +01:00
"exclude": [
2020-05-20 20:03:49 +02:00
"node_modules",
".vscode-test"
],
"include": [
"src",
"tests"
2019-12-30 02:22:52 +01:00
]
2018-08-11 00:04:09 +02:00
}