mirror of
https://github.com/andrei0x309/yup-live-chrome-extension.git
synced 2024-10-26 16:00:56 +00:00
30 lines
838 B
JSON
30 lines
838 B
JSON
|
{
|
||
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"useDefineForClassFields": true,
|
||
|
"module": "esnext",
|
||
|
"resolveJsonModule": true,
|
||
|
"baseUrl": ".",
|
||
|
/**
|
||
|
* 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,
|
||
|
"isolatedModules": false,
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*", "./dist/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.d.ts",
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.js",
|
||
|
"src/**/*.svelte"
|
||
|
],
|
||
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||
|
}
|