mirror of
https://github.com/Xinrea/bili-shadowreplay.git
synced 2025-11-25 04:22:24 +08:00
33 lines
954 B
JSON
33 lines
954 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "es2017",
|
|
"isolatedModules": true,
|
|
/**
|
|
To have warnings/errors of the Svelte compiler at the correct position,
|
|
enable source maps by default.
|
|
*/
|
|
"sourceMap": true,
|
|
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"verbatimModuleSyntax": true,
|
|
/**
|
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
* Disable checkJs if you'd like to use dynamic types in JS.
|
|
* Note that setting allowJs false does not prevent the use
|
|
* of JS in `.svelte` files.
|
|
*/
|
|
"allowJs": true,
|
|
"checkJs": true
|
|
},
|
|
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|