2022-05-21 09:23:55 +02:00
|
|
|
{
|
|
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": [
|
|
|
|
"es2020",
|
|
|
|
"DOM"
|
|
|
|
],
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "es2020",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "es2020",
|
2022-07-09 04:26:50 +02:00
|
|
|
"importsNotUsedAsValues": "preserve",
|
2022-07-11 04:41:45 +02:00
|
|
|
"preserveValueImports": false,
|
|
|
|
"paths": {
|
|
|
|
"$lib": ["src/lib"],
|
|
|
|
"$lib/*": ["src/lib/*"],
|
|
|
|
"@api": ["src/api"]
|
|
|
|
}
|
2022-07-09 04:26:50 +02:00
|
|
|
},
|
2022-05-21 09:23:55 +02:00
|
|
|
}
|