go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/analysis/frontend/ui/tsconfig.json (about) 1 { 2 "compilerOptions": { 3 "target": "esnext", 4 "module": "commonjs", 5 "allowJs": true, 6 "esModuleInterop": true, 7 "noUnusedLocals": true, 8 "noUnusedParameters": true, 9 "noImplicitReturns": true, 10 "noFallthroughCasesInSwitch": true, 11 "strict": true, 12 "moduleResolution": "node", 13 "resolveJsonModule": true, 14 "isolatedModules": true, 15 "allowSyntheticDefaultImports": true, 16 "experimentalDecorators": true, 17 "noEmit": true, 18 "noEmitOnError": true, 19 "jsx": "react-jsx", 20 "lib": ["dom", "dom.iterable", "esnext"], 21 "plugins": [ 22 { 23 "name": "ts-lit-plugin", 24 "strict": true 25 } 26 ], 27 "paths": { 28 "@/*": ["./src/*"], 29 "@app/*": ["./*"], 30 } 31 }, 32 "include": [ 33 "src/**/*.ts", "src/**/*.tsx", 34 ], 35 }