DefinitelyTyped/types/markdown-it/tsconfig.json
duduluu abf12473cf
[markdown-it] Update types for markdown-it v10.0.0 (#42860)
* [markdown-it] Upgrade for v10.0.0

* [markdown-it]: rollback ts version to 2.0 and complete tests

* [prosemirror-markdown]: fix test due to markdown-it types update
2020-04-10 11:39:40 -07:00

38 lines
929 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/common/utils.ts",
"test/helpers/index.ts",
"test/rules_core/state_core.ts",
"test/rules_block/state_block.ts",
"test/rules_inline/state_inline.ts",
"test/index.ts",
"test/parser_block.ts",
"test/parser_core.ts",
"test/parser_inline.ts",
"test/renderer.ts",
"test/ruler.ts",
"test/token.ts",
"markdown-it-tests.ts"
]
}