marked/tsconfig-type-test.json
Florian Dreier cb549065f1
fix: Migrate to Typescript (#2805)
BREAKING CHANGE: Migrate to Typescript
2023-07-29 00:31:34 -06:00

23 lines
425 B
JSON

{
"compilerOptions": {
"target": "es2021",
"module": "NodeNext",
"isolatedModules": true,
"strict": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "NodeNext",
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"marked": [
"lib/marked.d.ts"
]
}
},
"include": [
"test/types/*.ts"
]
}