2022-05-03 20:29:31 +03:00
|
|
|
{
|
|
|
|
"//": "⚠️ NOTE: this file is only used for tests, individual packages have their own tsconfig.json files generated by `tools/gen-tsconfigs.ts`",
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2023-11-03 21:06:58 +03:00
|
|
|
"target": "ES2021",
|
2022-05-03 20:29:31 +03:00
|
|
|
"outDir": "dist",
|
2023-11-03 21:06:58 +03:00
|
|
|
"lib": ["dom", "ES2021"],
|
2022-05-03 20:29:31 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"typeRoots": ["./typings", "./node_modules/@types"]
|
|
|
|
}
|
|
|
|
}
|