-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
67 lines (67 loc) · 1.51 KB
/
tsconfig.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"noEmit": false,
"composite": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": [
"dom",
"ES2015",
"es2019",
"ESNext",
],
"module": "CommonJS",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"rootDir": "src",
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES2019",
"paths": {
"@usds.gov/questionable-core": [
"../questionable-core/src/index.ts"
],
"@usds.gov/questionable-mocks": [
"../questionable-mocks/src/index.ts"
],
"@usds.gov/questionable-react-component": [
"../questionable-react-component/src/index.ts"
],
"@usds.gov/questionable-build": [
"../questionable-build/src/index.ts"
],
}
},
"include": [
"src"
],
"references": [
{
"path": "../questionable-react-component"
},
{
"path": "../questionable-build"
},
{
"path": "../questionable-core"
},
{
"path": "../questionable-mocks"
}
]
}