-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 831 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 831 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
27
28
29
30
31
32
33
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"sourceRoot": "/"
},
"files": [
"typings/tsd.d.ts",
"src/app.ts",
"src/home/index.ts",
"src/login/index.ts",
"src/member/signup/index.ts",
"src/member/change/change.ts",
"src/member/normalSignup/index.ts",
"src/member/normalSignupchange/index.ts",
"src/member/businessSignup/index.ts",
"src/member/businessSignupchange/index.ts",
"src/buildCase/buildCaseInput/index.ts",
"src/index.ts",
"src/common/headers.ts",
"src/common/auth.guard.ts"
],
"exclude": [
"node_modules"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": { "rewriteTsconfig": true }
}