[READ-ONLY] Mirror of https://github.com/probablykasper/mr-tagger. Music file tagging app for Mac, Linux and Windows
audio
linux
macos
music
tagger
tauri
windows
608 B
25 lines
1{
2 "compilerOptions": {
3 "target": "esnext",
4 "module": "esnext",
5 "moduleResolution": "node",
6
7 // require `import type` instead fo `import` for types
8 // svelte-preprocess apparently needs this
9 "importsNotUsedAsValues": "error",
10 "isolatedModules": true,
11
12 // To have svelte warnings/errors correct position
13 "sourceMap": true,
14
15 // Prevent type errors
16 "types": ["svelte"],
17
18 "strict": true,
19 "esModuleInterop": true,
20 "skipLibCheck": true,
21 "forceConsistentCasingInFileNames": true,
22 "baseUrl": "."
23 },
24 "include": ["src/**/*.ts", "src/**/*.svelte"]
25}