rust-analyzer/editors/code/tsconfig.json

24 lines
541 B
JSON
Raw Normal View History

2018-07-30 18:58:49 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
2018-07-30 18:58:49 +00:00
"outDir": "out",
2019-12-30 01:22:52 +00:00
"lib": [
"es2019"
2019-12-30 01:22:52 +00:00
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2018-07-30 18:58:49 +00:00
"sourceMap": true,
2018-08-27 19:52:43 +00:00
"rootDir": "src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
2019-12-30 22:30:35 +00:00
"noFallthroughCasesInSwitch": true,
"newLine": "LF"
2018-07-30 18:58:49 +00:00
},
2019-12-30 01:22:52 +00:00
"exclude": [
"node_modules"
]
2018-08-10 22:04:09 +00:00
}