1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2024-11-28 10:22:24 +01:00
rolens/frontend/jsconfig.json

28 lines
629 B
JSON
Raw Normal View History

2023-01-10 17:28:27 +01: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 19:27:51 +01:00
"checkJs": true,
"paths": {
"$components/*": ["src/components/*"],
"$organisms/*": ["src/organisms/*"],
"$wails/*": ["wailsjs/*"],
"$lib/*": ["src/lib/*"]
}
2023-01-10 17:28:27 +01:00
},
"include": [
"src/**/*.d.ts",
"src/**/*.js",
"src/**/*.svelte"
]
}