-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 828 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 828 Bytes
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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["ES6", "DOM"],
"module": "ES2022",
"moduleResolution": "node",
"noEmit": false,
"strict": true,
"target": "ES6",
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@common-style/*": ["./src/common-style/*"],
"@popup/*": ["./src/popup/*"],
"@steemapp/*": ["src/popup/steem/*"],
"@background/*": ["./src/background/*"],
"@interfaces/*": ["./src/interfaces/*"],
"@reference-data/*": ["./src/reference-data/*"],
"@api/*": ["./src/api/*"],
"react": ["./node_modules/@types/react"]
}
},
"include": ["src/**/*"],
"exclude": ["src/__tests__/*"] // TODO Comment when working on tests
}