angular-cn/modules/@angular/router/tsconfig.json

55 lines
1.4 KiB
JSON
Raw Normal View History

{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"stripInternal": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../../../dist/all/@angular/router/",
"paths": {
"@angular/*": ["../../../dist/all/@angular/*"]
},
"rootDir": ".",
"sourceMap": true,
2016-05-23 19:28:11 -04:00
"inlineSources": true,
"lib": ["es6", "dom"],
"target": "es5"
},
"files": [
"index.ts",
"src/router.ts",
2016-06-08 19:14:26 -04:00
"src/apply_redirects.ts",
2016-05-24 17:47:26 -04:00
"src/recognize.ts",
"src/resolve.ts",
"src/create_router_state.ts",
2016-05-24 17:47:26 -04:00
"src/router.ts",
"src/config.ts",
"src/router_outlet_map.ts",
"src/router_state.ts",
"src/shared.ts",
2016-06-09 17:32:03 -04:00
"src/common_router_providers.ts",
"src/router_providers.ts",
"src/create_url_tree.ts",
2016-05-24 17:47:26 -04:00
"src/directives/router_outlet.ts",
"src/directives/router_link.ts",
"src/interfaces.ts",
2016-05-24 17:47:26 -04:00
"src/utils/tree.ts",
"src/utils/collection.ts",
"test/url_tree.spec.ts",
"test/utils/tree.spec.ts",
"test/url_serializer.spec.ts",
"test/resolve.spec.ts",
2016-06-08 19:14:26 -04:00
"test/apply_redirects.spec.ts",
2016-05-23 19:14:23 -04:00
"test/recognize.spec.ts",
"test/create_router_state.spec.ts",
"test/create_url_tree.spec.ts",
"test/config.spec.ts",
"test/router.spec.ts",
"../../../node_modules/@types/jasmine/index.d.ts"
]
}