rust/editors/code/tsconfig.json

18 lines
308 B
JSON
Raw Normal View History

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