mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-08 09:11:46 +00:00
33 lines
807 B
JSON
33 lines
807 B
JSON
{
|
|
"extends": "./node_modules/@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "es2022"],
|
|
"module": "esnext",
|
|
"types": ["electron-vite/node"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@assets/*": ["./assets/*"]
|
|
}
|
|
},
|
|
"exclude": ["./dist"],
|
|
"include": [
|
|
"electron.vite.config.mts",
|
|
"playwright.config.ts",
|
|
"./src/**/*",
|
|
"*.config.*js"
|
|
]
|
|
}
|