libreoffice-online/loleaflet/tsconfig.json
Dennis Francis 47bc41d734 avoid vscode errors in tsconfig.json...
by moving allowJs and checkJs out of tsconfig as vscode assumes default
outDir and rootDir which we can set only via cli call to tsc as they are
makefile configurables.

Signed-off-by: Dennis Francis <dennis.francis@collabora.com>
Change-Id: I3ba3bc98018c6d738c8767ff9f4affc3c33602c3
2021-04-08 14:05:54 +05:30

31 lines
624 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"module": "none",
"lib": ["dom", "es2016"],
"sourceMap": false,
"incremental": true,
"moduleResolution": "classic",
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": false,
"downlevelIteration": true,
"watch": false,
},
"exclude": [
"node_modules",
"./node_modules",
"./node_modules/*",
"js",
"admin",
"mocha_tests",
"docs",
"test",
"typescript_js",
"dist",
"release",
"debug"
]
}