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