mirror of
https://github.com/readest/readest.git
synced 2026-04-28 11:30:48 +00:00
40 lines
1,020 B
JSON
40 lines
1,020 B
JSON
{
|
|
"extends": "@sindresorhus/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["dom", "dom.iterable", "webworker", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"allowImportingTsExtensions": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/components/ui/*": ["./src/components/primitives/*"],
|
|
"@pdfjs/*": ["./public/vendor/pdfjs/*"],
|
|
"@simplecc/*": ["./public/vendor/simplecc/*"],
|
|
"tauri-plugin-turso": ["./src-tauri/plugins/tauri-plugin-turso/guest-js"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"raw-loader.d.ts",
|
|
".next/types/**/*.ts",
|
|
"scripts/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "out"]
|
|
}
|