21 lines
561 B
JSON
21 lines
561 B
JSON
{
|
|
"angularCompilerOptions": {
|
|
// For TypeScript 1.8, we have to lay out generated files
|
|
// in the same source directory with your code.
|
|
"skipTemplateCodegen": true
|
|
},
|
|
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"rootDir": "",
|
|
"declaration": true,
|
|
"lib": ["es6", "dom"],
|
|
"baseUrl": ".",
|
|
"outDir": "../node_modules/third_party",
|
|
// Prevent scanning up the directory tree for types
|
|
"typeRoots": ["node_modules/@types"]
|
|
}
|
|
} |