generated from gtrabanco/nodecg-react-ts-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
71 lines (71 loc) · 1.73 KB
/
tsconfig.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"compilerOptions": {
"noEmit": true,
"target": "es6", // using babel-loader to transpile to es5
"module": "esnext", //commonjs destroys 'dynamic imports' which is used for code splitting
"noImplicitAny": false,
"preserveConstEnums": true,
"jsx": "react-jsx", // process JSX
"jsxImportSource": "react",
"jsxFragmentFactory": "Fragment",
"isolatedModules": true,
"lib": [
"dom",
"es5",
"es6",
"es7",
"es2017"
],
"allowSyntheticDefaultImports": true, // no errors with commonjs modules interop
"esModuleInterop": true,
"allowJs": true, // include js files
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"resolveJsonModule": true,
"strict": true,
"strictFunctionTypes": false,
"skipLibCheck": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"types": [],
"baseUrl": "./src",
"paths": {
"/*": [
"../*"
],
"*": [
"*"
],
"types/*": [
"types/*"
],
}
},
"files": [
"globals.d.ts"
],
"include": [
"./src/**/*.tsx",
"./src/**/*.ts",
"./src/**/*.jsx",
"./src/**/*.js",
"src/hooks/use-match-actions",
"@nodecg/types/augment-window.d.ts"
, "src/components/time-counter/lib/time-worker.ts.bak", "src/components/time-counter/lib/time-worker.ts.bak.2" ],
"exclude": [
"node_modules"
],
"typeRoots": [
"src/types",
"node_modules/@types"
]
}