c0c7878adc
This PR starts the monorepo migrations as per https://github.com/puppeteer/puppeteer/issues/8922. To scope migrations, we are only moving the `testserver` into a separate package. Further migrations will come later.
17 lines
386 B
JSON
17 lines
386 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"module": "CommonJS",
|
|
"outDir": "build",
|
|
"rootDir": "src"
|
|
},
|
|
"include": ["src"],
|
|
"references": [
|
|
{"path": "../src/tsconfig.cjs.json"},
|
|
{"path": "../packages/testserver/tsconfig.json"},
|
|
{"path": "../utils/mochaRunner/tsconfig.json"}
|
|
]
|
|
}
|