rsnext/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
814 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"noEmit": true,
2024-07-04 10:03:46 +02:00
"strict": false,
"allowJs": true,
2024-07-04 10:03:46 +02:00
"esModuleInterop": true,
"resolveJsonModule": true,
"jsx": "react-jsx",
2024-07-04 10:03:46 +02:00
"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"]
}