A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
1{
2 "compilerOptions": {
3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4 "target": "ES2020",
5 "useDefineForClassFields": true,
6 "lib": [
7 "ES2020",
8 "DOM",
9 "DOM.Iterable"
10 ],
11 "module": "ESNext",
12 "skipLibCheck": true,
13 /* Bundler mode */
14 "moduleResolution": "bundler",
15 "allowImportingTsExtensions": true,
16 "isolatedModules": true,
17 "moduleDetection": "force",
18 "noEmit": true,
19 "jsx": "react-jsx",
20 /* Linting */
21 "strict": true,
22 "noUnusedLocals": true,
23 "noUnusedParameters": true,
24 "noFallthroughCasesInSwitch": true,
25 "noUncheckedSideEffectImports": true,
26 "baseUrl": ".",
27 "paths": {
28 "@/*": [
29 "./src/*"
30 ]
31 }
32 },
33 "include": [
34 "src"
35 ]
36}