forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 851 Bytes
/
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
{
"compilerOptions": {
"noEmit": true,
"strict": false,
"allowJs": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"jsx": "react-jsx",
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"types": ["react", "jest", "node", "trusted-types", "jest-extended"],
"paths": {
"development-sandbox": ["./test/lib/development-sandbox"],
"next-test-utils": ["./test/lib/next-test-utils"],
"amp-test-utils": ["./test/lib/amp-test-utils"],
"next-webdriver": ["./test/lib/next-webdriver"],
"e2e-utils": ["./test/lib/e2e-utils"],
"test-data-service/*": ["./test/lib/test-data-service/*"],
"test-log": ["./test/lib/test-log"]
}
},
"include": [
"test/**/*.test.ts",
"test/**/*.test.tsx",
"test/lib/**/*.ts",
"turbo/**/*.ts"
]
}