codimd/tsconfig.json
2021-06-16 18:35:39 +08:00

28 lines
595 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/"]
}
},
"include": [
"./lib/**/*"
],
"exclude": ["node_modules"]
}