2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-10-10 14:32:09 -06:00
easy-markdown-editor/tsconfig.json

21 lines
560 B
JSON
Raw Permalink Normal View History

2023-04-28 02:51:04 +02:00
{
"compilerOptions": {
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"noFallthroughCasesInSwitch": true,
"declaration": false,
"lib": ["esnext", "dom", "dom.iterable"],
"module": "es2022",
2025-05-01 16:59:08 +02:00
"moduleResolution": "bundler",
2023-04-28 02:51:04 +02:00
"removeComments": false,
"sourceMap": true,
"allowJs": true,
"strict": true,
"target": "es2021",
2025-05-01 18:28:20 +02:00
"skipLibCheck": false
2023-04-28 02:51:04 +02:00
},
"files": ["src/index.ts"]
}