rust/editors/code/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
518 B
JSON
Raw Normal View History

2018-07-30 20:58:49 +02:00
{
"compilerOptions": {
"module": "commonjs",
2022-04-15 17:14:51 +02:00
"target": "es2021",
2018-07-30 20:58:49 +02:00
"outDir": "out",
2022-04-15 17:14:51 +02:00
"lib": ["es2021"],
2018-07-30 20:58:49 +02:00
"sourceMap": true,
2020-05-20 20:03:49 +02:00
"rootDir": ".",
"strict": true,
"useUnknownInCatchVariables": false,
"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
},
2020-05-20 20:03:49 +02:00
"exclude": ["node_modules", ".vscode-test"],
"include": ["src", "tests"]
2018-08-11 00:04:09 +02:00
}