mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 17:00:40 +01:00
ca6e9b5745
* chore: don't swallow rejected promise errors * ignore rules rather than adding catch blocks. add async to functions returning promises * remove redundant asyncs * remove extremely pointless rule * remove another daft rule * this is what typescript is for * again, typescript already has this covered, we don't need it * simplify * this rule is harmless --------- Co-authored-by: Rich Harris <rich.harris@vercel.com>
18 lines
384 B
JSON
18 lines
384 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "Bundler",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"checkJs": true
|
|
},
|
|
"include": ["./run.js", "./input"]
|
|
}
|