1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-18 21:17:59 +00:00
rolens/frontend/jsconfig.json

28 lines
629 B
JSON
Raw Normal View History

2023-01-10 16:28:27 +00:00
{
"compilerOptions": {
"moduleResolution": "Node",
"target": "ESNext",
"module": "ESNext",
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"resolveJsonModule": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
2023-02-15 18:27:51 +00:00
"checkJs": true,
"paths": {
"$components/*": ["src/components/*"],
"$organisms/*": ["src/organisms/*"],
"$wails/*": ["wailsjs/*"],
"$lib/*": ["src/lib/*"]
}
2023-01-10 16:28:27 +00:00
},
"include": [
"src/**/*.d.ts",
"src/**/*.js",
"src/**/*.svelte"
]
}