mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-05-09 04:05:13 +02:00
19 lines
422 B
JSON
19 lines
422 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2021",
|
|
"module": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
},
|
|
"allowJs": true,
|
|
"checkJs": true
|
|
},
|
|
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"]
|
|
}
|