codimd/tsconfig.json

29 lines
626 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"baseUrl": ".",
"allowJs": false,
"target": "ES2019",
"outDir": "./dist/",
"module": "CommonJS",
"esModuleInterop": true,
// strict check
"strictBindCallApply": true,
"preserveConstEnums": true,
"downlevelIteration": false,
"noImplicitThis": true,
"strictFunctionTypes": true,
"typeRoots": ["./typings", "./node_modules/@types"],
"paths": {
"@hackmd/diff-match-patch": ["./typings/diff-match-patch/"],
"ot": ["./typings/ot/"]
}
},
"include": [
"./lib/**/*"
],
"exclude": ["node_modules"]
}