2024-06-26 19:01:09 +03:00
|
|
|
{
|
|
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"lib": ["dom", "dom.iterable", "ES2021"],
|
|
|
|
"allowJs": true,
|
2024-07-30 17:45:19 +03:00
|
|
|
"checkJs": false,
|
2024-06-26 19:01:09 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2024-10-21 12:51:29 +03:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"declaration": true,
|
|
|
|
"composite": true,
|
|
|
|
"declarationMap": true
|
2024-07-30 17:45:19 +03:00
|
|
|
},
|
|
|
|
"include": [
|
2024-08-02 13:46:56 +03:00
|
|
|
".svelte-kit/ambient.d.ts",
|
|
|
|
".svelte-kit/non-ambient.d.ts",
|
|
|
|
".svelte-kit/types/**/$types.d.ts",
|
2024-08-05 14:20:03 +03:00
|
|
|
"terrazzo.config.js",
|
2024-08-08 15:51:37 +03:00
|
|
|
"postcss.config.js",
|
2024-07-30 17:45:19 +03:00
|
|
|
"vite.config.js",
|
|
|
|
"vite.config.ts",
|
2024-09-26 01:36:46 +03:00
|
|
|
"vitest.workspace.ts",
|
2024-07-30 17:45:19 +03:00
|
|
|
"src/**/*.js",
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.svelte",
|
|
|
|
"tests/**/*.js",
|
|
|
|
"tests/**/*.ts",
|
|
|
|
"tests/**/*.svelte"
|
2024-10-21 18:15:49 +03:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules/**",
|
|
|
|
"src/service-worker.js",
|
|
|
|
"src/service-worker.ts",
|
|
|
|
"src/service-worker.d.ts",
|
|
|
|
"src/stories/**/*.stories.ts"
|
2024-07-30 17:45:19 +03:00
|
|
|
]
|
2024-06-26 19:01:09 +03:00
|
|
|
}
|