mirror of
https://github.com/status-im/codimd.git
synced 2025-01-12 05:14:27 +00:00
3c370fea3e
Signed-off-by: Raccoon <raccoon@hackmd.io>
28 lines
595 B
JSON
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"]
|
|
}
|