Core

/client/tsconfig.json (847 B)

 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
{
"compilerOptions": {
"allowJs": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"declaration": true,
"esModuleInterop": true,
"importsNotUsedAsValues": "error",{{{ if .HasModule "jsx" }}}
"jsx": "react",
"jsxFactory": "JSX",{{{ end }}}
"listFiles": false,
"module": "none",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outFile": "../assets/{{{ .Key }}}.js",
"removeComments": true,
"preserveConstEnums": true,
"preserveWatchOutput": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES6"
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}