noteshare.space/webapp/tsconfig.json
2022-08-25 10:16:03 +02:00

20 lines
454 B
JSON

{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"types": ["vitest/globals", "@testing-library/jest-dom"],
"typeRoots": ["./node_modules/@types", "./src/types"]
},
"paths": {
"$lib": ["src/lib"],
"$lib/*": ["src/lib/*"]
}
}