Files
firefox-accounts-mirror/packages/fxa-content-server/tsconfig.json
Julian Poyourow 565ebb89c9 chore(build): initial nx implementation
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>
2023-05-23 08:37:47 -07:00

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" }
]
}