mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-10-11 23:12:10 -06:00
22 lines
591 B
JSON
22 lines
591 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"esModuleInterop": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"declaration": false,
|
||
|
"lib": ["esnext", "dom", "dom.iterable"],
|
||
|
"module": "es2022",
|
||
|
"moduleResolution": "node",
|
||
|
"removeComments": false,
|
||
|
"sourceMap": true,
|
||
|
"allowJs": true,
|
||
|
"strict": true,
|
||
|
"target": "es2021",
|
||
|
"skipLibCheck": false,
|
||
|
"outDir": "dist/browser"
|
||
|
},
|
||
|
"files": ["src/index.ts"]
|
||
|
}
|