mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-19 18:11:03 +00:00
25 lines
635 B
JSON
25 lines
635 B
JSON
|
{
|
||
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"baseUrl": ".",
|
||
|
/**
|
||
|
* Typechecking 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,
|
||
|
"paths": {
|
||
|
"@/*": [
|
||
|
"src/*"
|
||
|
],
|
||
|
}
|
||
|
},
|
||
|
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte"]
|
||
|
}
|