mirror of
https://github.com/ivabus/gui
synced 2025-04-23 22:17:18 +03:00

* remove unused components * remove pnpm * implementation of local dev pantry setup (#689)
14 lines
387 B
JSON
14 lines
387 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {},
|
|
"importsNotUsedAsValues": "error",
|
|
"isolatedModules": true,
|
|
"preserveValueImports": true,
|
|
"lib": ["esnext", "DOM", "DOM.Iterable"],
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"target": "esnext"
|
|
},
|
|
"include": ["./tests/**/*.js", "./tests/**/*.ts", "./tests/**/*.svelte"],
|
|
"exclude": ["./node_modules/**"]
|
|
}
|