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

22 lines
594 B
JSON
Raw 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",
"skipLibCheck": false,
"outDir": "dist/browser"
},
"files": ["src/index.ts"]
}