2022-04-28 23:31:09 +07:00
|
|
|
// @ts-nocheck
|
2021-12-23 05:34:24 +07:00
|
|
|
{
|
2022-04-28 23:31:09 +07:00
|
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
2021-12-23 05:34:24 +07:00
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "es2020",
|
|
|
|
"lib": ["es2020", "DOM"],
|
|
|
|
"target": "es2020",
|
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"isolatedModules": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"paths": {
|
2022-04-28 23:31:09 +07:00
|
|
|
"$lib": ["web_src/lib"],
|
|
|
|
"$lib/*": ["web_src/lib/*"]
|
2021-12-23 05:34:24 +07:00
|
|
|
}
|
|
|
|
},
|
2022-04-28 23:31:09 +07:00
|
|
|
"include": ["web_src/**/*.d.ts", "web_src/**/*.js", "web_src/**/*.ts", "web_src/**/*.svelte"]
|
2021-12-23 05:34:24 +07:00
|
|
|
}
|