vscode-cmake-tools/tsconfig.json

24 строки
554 B
JSON
Исходник Обычный вид История

2016-04-17 00:32:47 +03:00
{
"compilerOptions": {
"module": "commonjs",
2017-09-25 07:03:32 +03:00
"target": "es2017",
2016-04-17 00:32:47 +03:00
"outDir": "out",
"lib": [
"es6"
],
2016-04-17 00:32:47 +03:00
"sourceMap": true,
2016-09-25 01:29:20 +03:00
"rootDir": ".",
"noImplicitReturns": true,
2017-09-23 23:20:56 +03:00
"noImplicitAny": true,
"strictNullChecks": true,
2017-09-23 23:20:56 +03:00
"experimentalDecorators": true,
"noUnusedLocals": true,
2017-09-25 07:03:32 +03:00
"noUnusedParameters": true,
"noImplicitThis": true,
"skipLibCheck": true
2016-04-17 00:32:47 +03:00
},
"exclude": [
"node_modules",
".vscode-test"
2016-04-17 00:32:47 +03:00
]
}