1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| {
| "compilerOptions": {
| "target": "es5",
| "baseUrl": "./",
| "noImplicitThis": true,
| "lib": ["es5", "dom"],
| "types": ["cypress", "node"],
| "typeRoots": [
| "./types",
| "./node_modules/@heartexlabs/ls-test/types",
| "./node_modules/@types"
| ]
| },
| "exclude": [
| "./node_modules"
| ],
| "include": [
| "**/*.ts",
| "./node_modules/@heartexlabs/ls-test/**/*.ts"
| ]
| }
|
|