rebuild/tsconfig.json

31 строка
641 B
JSON
Исходник Постоянная ссылка Обычный вид История

2017-03-29 01:36:29 +03:00
{
"compilerOptions": {
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
2017-03-29 01:36:29 +03:00
"pretty": true,
"target": "ES2019",
2017-03-29 01:36:29 +03:00
"outDir": "lib"
},
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
},
"exclude": [
"node_modules",
"lib",
"test"
2017-03-29 01:36:29 +03:00
]
}