forked from angular-redux/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 720 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 720 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
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"lib": ["esnext", "dom", "dom.iterable"],
"baseUrl": ".",
"paths": {
"@angular-redux/store": ["packages/store/src/index.ts"],
"@angular-redux/form": ["packages/form/source/index.ts"],
"@angular-redux/router": ["packages/router/src/index.ts"]
},
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"strictPropertyInitialization": false
}
}