rust/editors/code/tsconfig.json

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

20 lines
546 B
JSON
Raw Normal View History

2018-07-30 21:58:49 +03:00
{
"extends": "@tsconfig/strictest/tsconfig.json",
2018-07-30 21:58:49 +03:00
"compilerOptions": {
"esModuleInterop": false,
"module": "commonjs",
"moduleResolution": "node16",
2022-04-15 18:14:51 +03:00
"target": "es2021",
2018-07-30 21:58:49 +03:00
"outDir": "out",
2022-04-15 18:14:51 +03:00
"lib": ["es2021"],
2018-07-30 21:58:49 +03:00
"sourceMap": true,
2020-05-20 21:03:49 +03:00
"rootDir": ".",
"newLine": "LF",
// FIXME: https://github.com/rust-lang/rust-analyzer/issues/15253
"exactOptionalPropertyTypes": false
2018-07-30 21:58:49 +03:00
},
2020-05-20 21:03:49 +03:00
"exclude": ["node_modules", ".vscode-test"],
"include": ["src", "tests"]
2018-08-11 01:04:09 +03:00
}