2021-09-27 13:29:45 +00:00
|
|
|
{
|
2024-07-25 20:04:08 +00:00
|
|
|
"include": ["src/**/*.ts", ".eslintrc.js"],
|
|
|
|
"exclude": ["src/svelte.d.ts"],
|
2021-09-27 13:29:45 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./lib",
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"strict": true,
|
2022-06-20 20:43:01 +00:00
|
|
|
"types": ["svelte"],
|
2021-09-27 13:29:45 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2023-04-01 17:41:40 +00:00
|
|
|
"forceConsistentCasingInFileNames": true
|
2021-09-27 13:29:45 +00:00
|
|
|
}
|
|
|
|
}
|