mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-01-12 02:21:49 +00:00
66 lines
No EOL
1.5 KiB
JSON
66 lines
No EOL
1.5 KiB
JSON
{
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "esnext",
|
|
"lib": [
|
|
"esnext",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"emitDeclarationOnly": false,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"declaration": true,
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"noEmit": false,
|
|
"outDir": "./dist",
|
|
"maxNodeModuleJsDepth": 3,
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": true,
|
|
"plugins": [
|
|
{
|
|
"name": "gql.tada/ts-plugin",
|
|
"schema": "https://graphql.anilist.co",
|
|
"tadaOutputLocation": "./src/lib/modules/anilist/graphql-env.d.ts",
|
|
"tadaTurboLocation": "./src/lib/modules/anilist/graphql-turbo.d.ts"
|
|
}
|
|
],
|
|
"typeRoots": [
|
|
"./src/types"
|
|
]
|
|
},
|
|
"typeAcquisition": {
|
|
"enable": false
|
|
},
|
|
"files": [
|
|
"src/service-worker/index.ts"
|
|
],
|
|
"include": [
|
|
"src/service-worker/index.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.cjs",
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.json",
|
|
"src/**/*.svelte",
|
|
"src/patches/debug.ts"
|
|
],
|
|
"exclude": [
|
|
"../node_modules/**"
|
|
]
|
|
} |