rsnext/tsconfig.base.json
2024-04-09 00:25:43 +02:00

23 lines
736 B
JSON

{
"compilerOptions": {
"strict": false,
"noEmit": true,
"allowJs": true,
"resolveJsonModule": true,
"jsx": "react-jsx",
"module": "esnext",
"target": "ESNext",
"esModuleInterop": true,
"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"]
}
}
}