noteshare.space/webapp/tsconfig.json

19 lines
397 B
JSON
Raw Normal View History

2022-06-22 00:30:11 +03:00
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
2022-07-05 00:52:54 +03:00
"strict": true,
"types": ["vitest/globals", "@testing-library/jest-dom"]
2022-06-22 00:30:11 +03:00
},
"paths": {
"$lib": ["src/lib"],
"$lib/*": ["src/lib/*"]
}
}