Files
Makoto-Markdown-to-HTML/tsconfig-web.json
2024-02-08 22:44:47 +00:00

22 lines
348 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"moduleResolution": "classic",
"typeRoots": [
"./node_modules/@types",
],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"lib": [
"ESNext",
"DOM"
],
"exclude": [
"node_modules",
".build"
]
}