forked from davidarroyo1234/InstagramUnfollowers
-
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) · 730 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 730 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": {
"jsx": "react",
"strict": true,
"noImplicitAny": true,
"noEmitOnError": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"removeComments": false,
"esModuleInterop": true,
"sourceMap": false,
"baseUrl": "src/",
"target": "es5",
"outDir": "dist",
"lib": ["dom", "scripthost", "es2015"],
"paths": {
"react": ["../node_modules/preact/compat"],
"react-dom": ["../node_modules/preact/compat"]
}
},
"include": ["src/**/*"]
}