rust-analyzer/editors/code/tsconfig.json

13 lines
264 B
JSON
Raw Normal View History

2018-07-30 18:58:49 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
2018-10-08 21:38:33 +00:00
"lib": ["es6"],
2018-07-30 18:58:49 +00:00
"sourceMap": true,
2018-08-27 19:52:43 +00:00
"rootDir": "src",
"strict": true
2018-07-30 18:58:49 +00:00
},
2018-10-08 21:38:33 +00:00
"exclude": ["node_modules", ".vscode-test"]
2018-08-10 22:04:09 +00:00
}