1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2024-11-22 10:25:48 +01:00
rolens/frontend/jsconfig.json
2023-02-15 19:27:51 +01:00

28 lines
629 B
JSON

{
"compilerOptions": {
"moduleResolution": "Node",
"target": "ESNext",
"module": "ESNext",
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"resolveJsonModule": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"checkJs": true,
"paths": {
"$components/*": ["src/components/*"],
"$organisms/*": ["src/organisms/*"],
"$wails/*": ["wailsjs/*"],
"$lib/*": ["src/lib/*"]
}
},
"include": [
"src/**/*.d.ts",
"src/**/*.js",
"src/**/*.svelte"
]
}