UNPKG

518 BJSONView Raw
1{
2 "include": [
3 "lib/**/*.js"
4 ],
5 "compilerOptions": {
6 "rootDir": ".",
7 "target": "ES2020",
8 "lib": [
9 "ES2020"
10 ],
11
12 "noEmit": true,
13
14 "allowJs": true,
15 "checkJs": true,
16 "maxNodeModuleJsDepth": 10,
17
18 "module": "commonjs",
19 "moduleResolution": "node",
20 "resolveJsonModule": true,
21
22 "stripInternal": true,
23 "noImplicitThis": true,
24 "noUnusedLocals": true,
25 "noUnusedParameters": false,
26
27 "typeRoots": [
28 "node_modules/bts-type-deps/types"
29 ]
30 }
31}