UNPKG

654 BJSONView Raw
1{
2 "include": [
3 "./jest.setup.ts",
4 "./src/**/*",
5 "./client/src/**/*",
6 "./typings/**/*",
7 "./client/typings/**/*"
8 ],
9 "exclude": ["**/node_modules/**"],
10 "compilerOptions": {
11 "strict": true,
12 "noImplicitAny": false,
13 "outDir": "lib",
14 "jsx": "react",
15 "target": "esnext",
16 "sourceMap": true,
17 "declaration": true,
18 "module": "commonjs",
19 "moduleResolution": "node",
20 "skipLibCheck": true,
21 "allowJs": true,
22 "esModuleInterop": true,
23 "allowSyntheticDefaultImports": true,
24 "forceConsistentCasingInFileNames": true,
25 "lib": ["es6", "es2017.object", "dom", "esnext.asynciterable"]
26 }
27}