this repo has no description
1{
2 "compilerOptions": {
3 "lib": ["esnext"],
4 "target": "esnext",
5 "module": "nodenext",
6 "moduleResolution": "nodenext",
7 "moduleDetection": "force",
8
9 "declaration": true,
10
11 "skipLibCheck": true,
12 "composite": true,
13 "newLine": "lf",
14
15 "forceConsistentCasingInFileNames": true,
16 "useDefineForClassFields": true,
17
18 "noUnusedLocals": true,
19 "noUnusedParameters": true,
20 "noImplicitOverride": true,
21 "noImplicitAny": true,
22 "exactOptionalPropertyTypes": true,
23 "strict": true,
24
25 "outDir": "dist",
26 "rootDir": "src"
27 }
28}