0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-21 19:38:58 +01:00
svelte/benchmarking/tsconfig.json
Dominic Gannaway d04f69ac05
chore: add a benchmarking tool + single benchmark (#12092)
* chore: add benchmarking tool and single benchmark
2024-06-19 18:33:53 +01:00

18 lines
403 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", "./utils.js", "./benchmarks"]
}