UNPKG

722 BJSONView Raw
1// This file is used by ngc to create the files in the build directory
2{
3 "compilerOptions": {
4 "declaration": true,
5 "module": "es2015",
6 "target": "es5",
7 "baseUrl": ".",
8 "stripInternal": true,
9 "emitDecoratorMetadata": true,
10 "experimentalDecorators": true,
11 "moduleResolution": "node",
12 "outDir": "../build",
13 "rootDir": ".",
14 "lib": [
15 "es2015",
16 "dom"
17 ],
18 "skipLibCheck": true,
19 // Don't auto-discover @types/node, it results in a ///<reference in the .d.ts output
20 "types": []
21 },
22 "angularCompilerOptions": {
23 "annotateForClosureCompiler": true,
24 "strictMetadataEmit": true,
25 "skipTemplateCodegen": true
26 },
27 "files": [
28 "./index.ts"
29 ]
30}