LaTeX-Workshop/tsconfig.json

24 lines
561 B
JSON
Raw Normal View History

2016-12-26 11:05:30 +03:00
{
"compilerOptions": {
2017-03-29 17:15:25 +03:00
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
2016-12-26 11:05:30 +03:00
"lib": [
"es2017", "dom"
2016-12-26 11:05:30 +03:00
],
"module": "commonjs",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "out",
"rootDir": ".",
2016-12-26 11:05:30 +03:00
"sourceMap": true,
"strictNullChecks": true,
"target": "es6"
2016-12-26 11:05:30 +03:00
},
"exclude": [
"node_modules"
2016-12-26 11:05:30 +03:00
]
}