UNPKG

555 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "esnext",
4 "module": "commonjs",
5 "declaration": true,
6 "sourceMap": true,
7 "strict": true,
8 "lib": ["esnext"],
9 "typeRoots": ["../../../../node_modules/@types", "../../../../src/@types"],
10 "outDir": "../../../../build",
11
12 "allowSyntheticDefaultImports": true,
13 "esModuleInterop": true
14 },
15 "include": ["../../../../src/**/*"],
16 "exclude": [
17 "../../../../node_modules/**/*",
18 "../../../../build/**/*",
19 "../../../../src/**/*.test.ts",
20 "../../../../src/**/*.test.js"
21 ]
22}