-
Notifications
You must be signed in to change notification settings - Fork 493
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
effe933
commit 5338eb4
Showing
11 changed files
with
3,220 additions
and
3,700 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"module": "es2020", | ||
"moduleResolution": "node", | ||
"target": "es2015", | ||
"outDir": "/dist/out-tsc", | ||
"allowSyntheticDefaultImports": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"inlineSourceMap": true, | ||
"inlineSources": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"stripInternal": true, | ||
"lib": [ | ||
"es2017", | ||
"dom" | ||
], | ||
"paths": { | ||
"angular-tree-component": [ | ||
"dist/angular-tree-component", | ||
"dist/angular-tree-component" | ||
], | ||
"angular-tree-component/*": [ | ||
"dist/angular-tree-component/*", | ||
"dist/angular-tree-component/*" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"lib/angular-tree-component" | ||
], | ||
"compileOnSave": false, | ||
"buildOnSave": false, | ||
"angularCompilerOptions": { | ||
"skipTemplateCodegen": true, | ||
"enableIvy": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,23 @@ | ||
/* | ||
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. | ||
It is not intended to be used to perform a compilation. | ||
To learn more about this file see: https://angular.io/config/solution-tsconfig. | ||
*/ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"module": "es2015", | ||
"moduleResolution": "node", | ||
"target": "es5", | ||
"outDir": "dist/", | ||
"allowSyntheticDefaultImports": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"inlineSourceMap": true, | ||
"inlineSources": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"stripInternal": true, | ||
"lib": [ | ||
"es2015", | ||
"dom" | ||
], | ||
"paths": { | ||
"angular-tree-component": [ | ||
"dist/angular-tree-component", | ||
"dist/angular-tree-component" | ||
], | ||
"angular-tree-component/*": [ | ||
"dist/angular-tree-component/*", | ||
"dist/angular-tree-component/*" | ||
] | ||
"files": [], | ||
"references": [ | ||
{ | ||
"path": "./projects/example-app/tsconfig.app.json" | ||
}, | ||
{ | ||
"path": "./projects/example-app/tsconfig.spec.json" | ||
}, | ||
{ | ||
"path": "./projects/angular-tree-component/tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./projects/angular-tree-component/tsconfig.spec.json" | ||
} | ||
}, | ||
"files": [ | ||
"lib/angular-tree-component" | ||
], | ||
"compileOnSave": false, | ||
"buildOnSave": false, | ||
"angularCompilerOptions": { | ||
"skipTemplateCodegen": true, | ||
"enableIvy": false | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters