fxa/tsconfig.base.json

46 строки
1.4 KiB
JSON

{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"allowJs": false,
"incremental": true,
"inlineSources": true,
"inlineSourceMap": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2019",
"module": "esnext",
"strict": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"useUnknownInCatchVariables": false,
"baseUrl": ".",
"paths": {
"@fxa/payments/paypal": ["libs/payments/paypal/src/index.ts"],
"@fxa/shared/db/mysql/account": [
"libs/shared/db/mysql/account/src/index.ts"
],
"@fxa/shared/db/mysql/core": ["libs/shared/db/mysql/core/src/index.ts"],
"@fxa/shared/log": ["libs/shared/log/src/index.ts"],
"@fxa/shared/metrics/statsd": ["libs/shared/metrics/statsd/src/index.ts"],
"@fxa/payments/cart": ["libs/payments/cart/src/index.ts"],
"@fxa/shared/error": ["libs/shared/error/src/index.ts"]
},
"typeRoots": [
"./types",
"./node_modules/@types",
"./packages/*/node_modules/@types"
],
"jsx": "react-jsx"
},
"exclude": ["packages/*/node_modules", "node_modules", "tmp"]
}