forked from RocketChat/Rocket.Chat.Electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 693 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 693 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
{
"compilerOptions": {
"rootDir": ".",
"module": "ESNext",
"target": "ES2015",
"lib": ["dom", "ES2015"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"outDir": "./app",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
// "noEmit": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
// "strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"include": ["src", "package.json"],
"exclude": ["app", "node_modules", "src/**/*.spec.ts"]
}