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>
18 lines
449 B
JSON
18 lines
449 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
// Permit, but do not report errors for JS files
|
|
// TODO: Remove after transition to TS is complete
|
|
"checkJs": false,
|
|
"outDir": "./dist",
|
|
"types": ["accept-language", "mocha", "mozlog", "node", "fxa-geodb"],
|
|
},
|
|
"include": [
|
|
"bin/*",
|
|
"scripts/*.ts",
|
|
"lib/senders/emails/templates/*/includes.ts"
|
|
]
|
|
}
|