2016-05-20 20:22:57 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2016-06-21 17:35:42 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"stripInternal": true,
|
2016-05-20 20:22:57 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
2016-06-21 17:35:42 +00:00
|
|
|
"experimentalDecorators": true,
|
2016-05-20 20:22:57 +00:00
|
|
|
"module": "commonjs",
|
2016-06-21 17:35:42 +00:00
|
|
|
"moduleResolution": "node",
|
2016-06-21 21:07:36 +00:00
|
|
|
"noEmitOnError": false,
|
2016-06-26 18:52:32 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
2016-06-21 17:35:42 +00:00
|
|
|
"outDir": "../../../dist/all/@angular/router/",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@angular/*": ["../../../dist/all/@angular/*"]
|
|
|
|
|
},
|
2016-05-20 20:22:57 +00:00
|
|
|
"rootDir": ".",
|
2016-06-21 17:35:42 +00:00
|
|
|
"sourceMap": true,
|
2016-05-23 23:28:11 +00:00
|
|
|
"inlineSources": true,
|
2016-06-21 17:35:42 +00:00
|
|
|
"lib": ["es6", "dom"],
|
|
|
|
|
"target": "es5"
|
2016-05-20 20:22:57 +00:00
|
|
|
},
|
|
|
|
|
"files": [
|
2016-06-21 17:35:42 +00:00
|
|
|
"index.ts",
|
2016-07-20 18:39:31 +00:00
|
|
|
"testing.ts",
|
2016-06-15 16:01:05 +00:00
|
|
|
"test/url_tree.spec.ts",
|
2016-05-24 20:57:51 +00:00
|
|
|
"test/utils/tree.spec.ts",
|
2016-05-22 00:35:36 +00:00
|
|
|
"test/url_serializer.spec.ts",
|
2016-06-08 23:14:26 +00:00
|
|
|
"test/apply_redirects.spec.ts",
|
2016-05-23 23:14:23 +00:00
|
|
|
"test/recognize.spec.ts",
|
2016-06-01 20:35:01 +00:00
|
|
|
"test/create_router_state.spec.ts",
|
2016-05-26 23:51:56 +00:00
|
|
|
"test/create_url_tree.spec.ts",
|
2016-06-16 21:36:51 +00:00
|
|
|
"test/config.spec.ts",
|
2016-08-02 21:34:00 +00:00
|
|
|
"test/router_state.spec.ts",
|
2016-05-20 20:22:57 +00:00
|
|
|
"test/router.spec.ts",
|
2016-08-10 22:53:57 +00:00
|
|
|
"test/integration.spec.ts",
|
2016-06-21 17:35:42 +00:00
|
|
|
"../../../node_modules/@types/jasmine/index.d.ts"
|
2016-05-20 20:22:57 +00:00
|
|
|
]
|
2016-05-20 21:43:07 +00:00
|
|
|
}
|
2016-05-24 20:23:27 +00:00
|
|
|
|
|
|
|
|
|