mirror of
https://github.com/mozilla/fxa.git
synced 2025-12-13 20:36:41 +01:00
Because: * We want to introduce nx to the repository This commit: * Adds nx with working builds Closes: FXA-7341 Co-authored-by: dschom <dschomburg@mozilla.com>
15 lines
345 B
JSON
15 lines
345 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"include": ["**/*.ts"],
|
|
"compilerOptions": {
|
|
"outDir": "./.tscompiled/",
|
|
"rootDirs": ["./app/scripts/", "./server/lib/routes/react-app"],
|
|
"baseUrl": "./app/scripts",
|
|
"noImplicitAny": false
|
|
},
|
|
"references": [
|
|
{ "path": "../fxa-shared" },
|
|
{ "path": "../fxa-react" }
|
|
]
|
|
}
|