forked from react-querybuilder/react-querybuilder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
30 lines (30 loc) · 1.17 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"compilerOptions": {
"noEmit": true,
"esModuleInterop": true,
"declaration": true,
"isolatedDeclarations": true,
"isolatedModules": true,
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "esnext",
"types": ["@testing-library/jest-dom", "node", "web", "bun"],
"paths": {
"react-querybuilder": ["./packages/react-querybuilder/src"],
"@rqb-parsecel": ["./packages/react-querybuilder/src/utils/parseCEL"],
"@rqb-parsejsonata": ["./packages/react-querybuilder/src/utils/parseJSONata"],
"@rqb-parsejsonlogic": ["./packages/react-querybuilder/src/utils/parseJsonLogic"],
"@rqb-parsemongodb": ["./packages/react-querybuilder/src/utils/parseMongoDB"],
"@rqb-parsespel": ["./packages/react-querybuilder/src/utils/parseSpEL"],
"@rqb-parsesql": ["./packages/react-querybuilder/src/utils/parseSQL"],
"@rqb-devapp": ["./utils/devapp"],
"@rqb-testing": ["./utils/testing"],
"@rqb-utils": ["./packages/react-querybuilder/src/utils"]
}
},
"include": ["./*.ts", "./utils/**/*.ts", "./utils/**/*.tsx"]
}