File tree Expand file tree Collapse file tree 1 file changed +30
-12
lines changed Expand file tree Collapse file tree 1 file changed +30
-12
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "compileOnSave" : false ,
3
2
"compilerOptions" : {
4
- "outDir" : " ./temp/out-tsc" ,
5
- "sourceMap" : true ,
6
- "declaration" : true ,
3
+ "outDir" : " ./dist" ,
4
+ "rootDir" : " ./src" ,
5
+ "target" : " es5" ,
6
+ "module" : " es2015" ,
7
7
"moduleResolution" : " node" ,
8
8
"emitDecoratorMetadata" : true ,
9
9
"experimentalDecorators" : true ,
10
- "target" : " es5" ,
11
- "module" : " es6" ,
12
- "typeRoots" : [
13
- " node_modules/@types"
14
- ],
15
- "lib" : [
16
- " es6" ,
17
- " dom"
10
+ "sourceMap" : true ,
11
+ "inlineSources" : true ,
12
+ "noEmitHelpers" : false ,
13
+ "noImplicitAny" : false ,
14
+ "declaration" : true ,
15
+ "skipLibCheck" : false ,
16
+ "stripInternal" : true ,
17
+ "strictNullChecks" : false ,
18
+ "allowSyntheticDefaultImports" : true ,
19
+ "noUnusedLocals" : false ,
20
+ "noUnusedParameters" : false ,
21
+ "lib" : [" dom" , " es6" ],
22
+ "types" : [
23
+ " jasmine"
18
24
]
25
+ },
26
+ "exclude" : [
27
+ " node_modules"
28
+ ],
29
+ "files" : [
30
+ " ./scripts/typings.d.ts" ,
31
+ " ./src/index.ts" ,
32
+ ],
33
+ "angularCompilerOptions" : {
34
+ "strictMetadataEmit" : true ,
35
+ "skipTemplateCodegen" : true ,
36
+ "fullTemplateTypeCheck" : true
19
37
}
20
38
}
You can’t perform that action at this time.
0 commit comments