mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 03:15:33 +00:00
This change rename the test files for Developer according to the discussion at the Keyman conference in November 2024.
21 lines
468 B
JSON
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/" },
|
|
]
|
|
}
|