forked from mozilla/fxa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
37 lines (37 loc) · 1004 Bytes
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"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"]
},
"typeRoots": [
"./types",
"./node_modules/@types",
"./packages/*/node_modules/@types"
],
"jsx": "react-jsx"
},
"exclude": ["packages/*/node_modules", "node_modules", "tmp"]
}