@auscope/angular2parse 19.0.0 → 20.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +13 -0
- package/LICENSE +21 -0
- package/README.md +65 -49
- package/angular.json +56 -0
- package/package.json +29 -21
- package/projects/angular2parse/README.md +49 -0
- package/projects/angular2parse/ng-package.json +7 -0
- package/projects/angular2parse/package.json +19 -0
- package/projects/angular2parse/src/lib/angular/compiler/assertions.ts +49 -0
- package/projects/angular2parse/src/lib/angular/compiler/ast.ts +393 -0
- package/projects/angular2parse/src/lib/angular/compiler/chars.ts +89 -0
- package/projects/angular2parse/src/lib/angular/compiler/interpolation-config.ts +25 -0
- package/projects/angular2parse/src/lib/angular/compiler/lexer.ts +383 -0
- package/projects/angular2parse/src/lib/angular/compiler/parser.ts +811 -0
- package/{lib/angular/compiler.d.ts → projects/angular2parse/src/lib/angular/compiler.ts} +1 -1
- package/projects/angular2parse/src/lib/angular/facade/lang.ts +124 -0
- package/projects/angular2parse/src/lib/angular/facade.ts +1 -0
- package/{lib/angular.d.ts → projects/angular2parse/src/lib/angular.ts} +1 -1
- package/projects/angular2parse/src/lib/module.ts +12 -0
- package/projects/angular2parse/src/lib/parse.ts +78 -0
- package/projects/angular2parse/src/lib/util/binary-operations.ts +17 -0
- package/projects/angular2parse/src/lib/util/lang.ts +15 -0
- package/{lib/util.d.ts → projects/angular2parse/src/lib/util.ts} +1 -1
- package/projects/angular2parse/src/lib/visitors/parse-visitor-compiler.ts +149 -0
- package/projects/angular2parse/src/lib/visitors/parse-visitor-resolver.ts +208 -0
- package/{lib/visitors.d.ts → projects/angular2parse/src/lib/visitors.ts} +1 -1
- package/projects/angular2parse/src/public-api.ts +5 -0
- package/projects/angular2parse/tsconfig.lib.json +19 -0
- package/projects/angular2parse/tsconfig.lib.prod.json +9 -0
- package/tsconfig.json +33 -0
- package/fesm2022/auscope-angular2parse.mjs +0 -2033
- package/fesm2022/auscope-angular2parse.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/angular/compiler/assertions.d.ts +0 -9
- package/lib/angular/compiler/ast.d.ts +0 -242
- package/lib/angular/compiler/chars.d.ts +0 -69
- package/lib/angular/compiler/interpolation-config.d.ts +0 -14
- package/lib/angular/compiler/lexer.d.ts +0 -44
- package/lib/angular/compiler/parser.d.ts +0 -92
- package/lib/angular/facade/lang.d.ts +0 -44
- package/lib/angular/facade.d.ts +0 -1
- package/lib/module.d.ts +0 -9
- package/lib/parse.d.ts +0 -21
- package/lib/util/binary-operations.d.ts +0 -1
- package/lib/util/lang.d.ts +0 -4
- package/lib/visitors/parse-visitor-compiler.d.ts +0 -23
- package/lib/visitors/parse-visitor-resolver.d.ts +0 -25
- package/public-api.d.ts +0 -2
package/tsconfig.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compileOnSave": false,
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"baseUrl": "./",
|
|
5
|
+
"outDir": "./dist/out-tsc",
|
|
6
|
+
"sourceMap": true,
|
|
7
|
+
"declaration": false,
|
|
8
|
+
"downlevelIteration": true,
|
|
9
|
+
"experimentalDecorators": true,
|
|
10
|
+
"module": "esnext",
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"importHelpers": true,
|
|
13
|
+
"target": "ES2022",
|
|
14
|
+
"typeRoots": [
|
|
15
|
+
"node_modules/@types"
|
|
16
|
+
],
|
|
17
|
+
"lib": [
|
|
18
|
+
"es2018",
|
|
19
|
+
"dom"
|
|
20
|
+
],
|
|
21
|
+
"paths": {
|
|
22
|
+
"angular2parse": [
|
|
23
|
+
"dist/angular2parse/angular2parse",
|
|
24
|
+
"dist/angular2parse"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"useDefineForClassFields": false
|
|
28
|
+
},
|
|
29
|
+
"angularCompilerOptions": {
|
|
30
|
+
"fullTemplateTypeCheck": true,
|
|
31
|
+
"strictInjectionParameters": true
|
|
32
|
+
}
|
|
33
|
+
}
|