all repos — go-lift @ 092e7440440b8459d82fb90c05c005f9f38e3c51

Lightweight workout tracker prototype..

ui/tsconfig.app.json (view raw)

 1{
 2  "compilerOptions": {
 3    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
 4    "target": "ES2020",
 5    "useDefineForClassFields": true,
 6    "lib": ["ES2020", "DOM", "DOM.Iterable"],
 7    "module": "ESNext",
 8    "skipLibCheck": true,
 9
10    /* Bundler mode */
11    "moduleResolution": "bundler",
12    "allowImportingTsExtensions": true,
13    "verbatimModuleSyntax": true,
14    "moduleDetection": "force",
15    "noEmit": true,
16    "jsx": "react-jsx",
17
18    /* Linting */
19    "strict": true,
20    "noUnusedLocals": true,
21    "noUnusedParameters": true,
22    "erasableSyntaxOnly": true,
23    "noFallthroughCasesInSwitch": true,
24    "noUncheckedSideEffectImports": true
25  },
26  "include": ["src"]
27}