spiegel-keyman/developer/src/common/web/utils/test/tsconfig.json
Eberhard Beilharz 66404f9503
chore(developer): rename test files
This change rename the test files for Developer according to the
discussion at the Keyman conference in November 2024.
2024-11-28 14:32:09 +01:00

21 lines
468 B
JSON

{
"extends": "../../../../kmc/tsconfig.kmc-base.json",
"compilerOptions": {
"rootDir": ".",
"rootDirs": ["./", "../src/"],
"outDir": "../build/test",
"esModuleInterop": true,
"moduleResolution": "node16",
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
},
"include": [
"**/*.tests.ts",
"helpers/*.ts",
],
"references": [
{ "path": "../" },
{ "path": "../../test-helpers/" },
]
}