-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
64 lines (64 loc) · 2.41 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
{
"version": "1.7.2",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"noLib": false,
"outDir": "./dist/"
},
"filesGlob": [
"./src/**/*.ts",
"./typings/**/*.ts",
"!./node_modules/**/*.ts"
],
"files": [
"./src/controllers/controller_interfaces.ts",
"./src/controllers/posts_controller.ts",
"./src/database.ts",
"./src/main.ts",
"./src/models/post.ts",
"./src/routes.ts",
"./typings/browser.d.ts",
"./typings/browser/ambient/bluebird/index.d.ts",
"./typings/browser/ambient/body-parser/index.d.ts",
"./typings/browser/ambient/express/index.d.ts",
"./typings/browser/ambient/lodash/index.d.ts",
"./typings/browser/ambient/mime/index.d.ts",
"./typings/browser/ambient/node/index.d.ts",
"./typings/browser/ambient/sequelize/index.d.ts",
"./typings/browser/ambient/serve-static/index.d.ts",
"./typings/browser/ambient/sqlite3/index.d.ts",
"./typings/browser/ambient/validator/index.d.ts",
"./typings/main.d.ts",
"./typings/main/ambient/bluebird/index.d.ts",
"./typings/main/ambient/body-parser/index.d.ts",
"./typings/main/ambient/express/index.d.ts",
"./typings/main/ambient/lodash/index.d.ts",
"./typings/main/ambient/mime/index.d.ts",
"./typings/main/ambient/node/index.d.ts",
"./typings/main/ambient/sequelize/index.d.ts",
"./typings/main/ambient/serve-static/index.d.ts",
"./typings/main/ambient/sqlite3/index.d.ts",
"./typings/main/ambient/validator/index.d.ts"
],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2,
"newLineCharacter": "\n",
"convertTabsToSpaces": true,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
},
"atom": {
"rewriteTsconfig": true
}
}