UNPKG

642 BJSONView Raw
1{
2 "compilerOptions": {
3 "module": "esnext",
4 "lib": [
5 "esnext"
6 ],
7 "types": [
8
9 ],
10 "esModuleInterop": true,
11 "target": "esnext",
12 "noImplicitAny": true,
13 "downlevelIteration": true,
14 "moduleResolution": "node",
15 "sourceMap": true,
16 "declaration": true,
17 "outDir": "esnext",
18 "baseUrl": ".",
19 "paths": {
20 "*": [
21 "node_modules/*",
22 "src/types/*"
23 ]
24 }
25 },
26 "include": [
27 "src/**/*"
28 ],
29 "typeRoots": [
30 "./node_modules/@types"
31 ]
32}