-
Notifications
You must be signed in to change notification settings - Fork 28
/
tsconfig-build.json
53 lines (53 loc) · 1.09 KB
/
tsconfig-build.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
{
"compilerOptions": {
"target": "ES5",
"module": "es2015",
"sourceMap": true,
"outDir": "./dist",
"paths": { },
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"moduleResolution": "node",
"noEmitOnError": false,
"declaration": true,
"strictNullChecks": false,
"strictFunctionTypes": false,
"inlineSources": true,
"baseUrl": ".",
"skipLibCheck": true,
"types": [
"deep-freeze",
"jasmine",
"lodash",
"node",
"uglify-js",
"webpack"
],
"lib": [
"dom", "es2015"
],
"baseUrl": ".",
"stripInternal": true,
"rootDir": ".",
"strict": true
},
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
},
"files": [
"index.ts"
],
"exclude": [
"node_modules"
],
"angularCompilerOptions": {
"strictMetadataEmit": true,
"skipTemplateCodegen": true,
"fullTemplateTypeCheck": true,
"annotateForClosureCompiler": true,
"flatModuleOutFile": "ngrx-json-api.js",
"flatModuleId": "ngrx-json-api"
}
}