Lanyards is a dedicated profile for researchers, built on the AT Protocol.
1{
2 "compilerOptions": {
3 "target": "ES2020",
4 "lib": [
5 "dom",
6 "dom.iterable",
7 "esnext"
8 ],
9 "allowJs": true,
10 "skipLibCheck": true,
11 "strict": true,
12 "noEmit": true,
13 "esModuleInterop": true,
14 "module": "esnext",
15 "moduleResolution": "bundler",
16 "resolveJsonModule": true,
17 "isolatedModules": true,
18 "jsx": "react-jsx",
19 "incremental": true,
20 "allowImportingTsExtensions": true,
21 "plugins": [
22 {
23 "name": "next"
24 }
25 ],
26 "paths": {
27 "@/*": [
28 "./src/*"
29 ]
30 }
31 },
32 "include": [
33 "next-env.d.ts",
34 "**/*.ts",
35 "**/*.tsx",
36 ".next/types/**/*.ts",
37 ".next/dev/types/**/*.ts"
38 ],
39 "exclude": [
40 "node_modules"
41 ]
42}