-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
57 lines (57 loc) · 2.08 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"isolatedModules": false,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "build",
"sourceMap": true
},
"filesGlob": [
"!node_modules/**/*.ts",
"!jspm_packages/**/*.ts",
"jspm_packages/**/bundles/**/*.d.ts",
"src/**/*.ts",
"typings/**/*.d.ts"
],
"files": [
"jspm_packages/npm/[email protected]/bundles/typings/angular2/angular2.d.ts",
"jspm_packages/npm/[email protected]/bundles/typings/angular2/http.d.ts",
"jspm_packages/npm/[email protected]/bundles/typings/angular2/router.d.ts",
"jspm_packages/npm/[email protected]/bundles/typings/angular2/testing.d.ts",
"jspm_packages/npm/[email protected]/bundles/typings/es6-shim/es6-shim.d.ts",
"jspm_packages/npm/[email protected]/bundles/typings/jasmine/jasmine.d.ts",
"src/bootstrap.ts",
"src/components/about.ts",
"src/components/create-database.ts",
"src/components/dashboard.ts",
"src/components/database-list.ts",
"src/components/database-router.ts",
"src/components/database-view.ts",
"src/components/lock.ts",
"src/components/main.ts",
"src/components/password-edit.ts",
"src/shared/alert.ts",
"src/shared/navbar.ts",
"src/shared/password-strength-bar.ts",
"src/shared/search-box.ts",
"src/shared/spinner.ts",
"src/shared/unlock-database.ts",
"src/utils/crypto.ts",
"src/utils/filter-pipe.ts",
"src/utils/gdrive-store.ts",
"src/utils/gdrive.ts",
"src/utils/mask-password-pipe.ts",
"src/utils/order-by-pipe.ts",
"src/utils/store.ts"
]
}