mirror of
https://github.com/garraflavatra/rolens.git
synced 2024-11-21 22:18:59 +01:00
28 lines
629 B
JSON
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"
|
|
]
|
|
}
|