Files
firefox-accounts-mirror/packages/fxa-auth-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

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