forked from tomastrajan/react-typescript-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
51 lines (51 loc) · 1.49 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"sourceMap": true,
"jsx": "react"
},
"files": [
"src/main.tsx",
"src/main.app.service.ts",
"src/auth/auth.app.service.ts",
"src/auth/ui/auth.component.tsx",
"src/auth/auth.interceptor.ts",
"src/auth/auth.model.ts",
"src/auth/auth.service.ts",
"src/auth/auth.interface.ts",
"src/todo/todo.interface.ts",
"src/todo/ui/todo.component.tsx",
"src/todo/ui/todo.counter.tsx",
"src/todo/ui/todo.container.tsx",
"src/todo/ui/todo.item.tsx",
"src/todo/ui/todo.list.tsx",
"src/todo/todo.model.ts",
"src/todo/todo.persistence.ts",
"src/todo/todo.persistence-ls.ts",
"src/todo/todo.service.ts",
"src/common/observable-factory.ts",
"src/common/loading/loading.component.tsx",
"src/common/loading/loading.interceptor.ts",
"typings/axios/axios.d.ts",
"typings/auth0/auth0.d.ts",
"typings/auth0.lock/auth0.lock.d.ts",
"typings/bluebird/bluebird.d.ts",
"typings/classnames/classnames.d.ts",
"typings/es6-promise/es6-promise.d.ts",
"typings/history/history.d.ts",
"typings/lodash/lodash.d.ts",
"typings/material-ui/material-ui.d.ts",
"typings/react/react.d.ts",
"typings/react-bootstrap/react-bootstrap.d.ts",
"typings/react-dom/react-dom.d.ts",
"typings/react-router/react-router.d.ts",
"typings/uuid/uuid.d.ts"
],
"filesGlob": [
"src/**/*.tsx",
"src/**/*.ts",
"typings/**/*d.ts"
],
"exclude": []
}