mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-22 12:27:29 +01:00
fe8a9ce31d
Co-authored-by: Rich Harris <rich.harris@vercel.com> Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com> Co-authored-by: Dominic Gannaway <dg@domgan.com>
36 lines
980 B
JSON
36 lines
980 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"target": "esnext",
|
|
"noEmit": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"noEmitOnError": true,
|
|
"noErrorTruncation": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"verbatimModuleSyntax": true,
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"paths": {
|
|
"svelte": ["./src/main/public.d.ts"],
|
|
"svelte/action": ["./src/action/public.d.ts"],
|
|
"svelte/compiler": ["./src/compiler/public.d.ts"],
|
|
"svelte/internal": ["./src/internal/index.js"],
|
|
"svelte/legacy": ["./src/legacy/public.d.ts"],
|
|
"svelte/server": ["./src/server/index.js"],
|
|
"svelte/store": ["./src/store/public.d.ts"],
|
|
"#compiler": ["./src/compiler/types/index.d.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src",
|
|
"./tests/*/test.ts",
|
|
"./tests/runtime-browser/test-ssr.ts",
|
|
"./tests/*/samples/*/_config.js"
|
|
],
|
|
"exclude": ["./src/compiler/optimizer"]
|
|
}
|