forked from open-source-labs/Reactime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 699 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 699 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
{
"compilerOptions": {
"outDir": "./src/extension/build/bundles/",
"module": "es6",
"target": "es5",
"jsx": "react",
"removeComments": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"typeRoots": [
"./node_modules/@types"
],
"types": ["chrome", "jest", "node"],
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
},
"include": ["./src/app", "./src/backend", "./src/extension", "./jest-setup.ts", "./global.d.ts"],
"exclude": ["./src/app/__tests__", "./src/backend/__tests__"],
"typeDocOptions": {
"mode": "file",
"out": "docs"
},
}