File tree Expand file tree Collapse file tree 9 files changed +79
-100
lines changed Expand file tree Collapse file tree 9 files changed +79
-100
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " generator-code-dependencies-versions" ,
3
+ "version" : " 0.0.1" ,
4
+ "private" : false ,
3
5
"description" : " Helper file to manage the versions of the node modules used by the generators. Named package.json so the VS Code dependencies completions work. Must be in a subfolder due to #325" ,
6
+ "keywords" : [
7
+ " codeeditorland" ,
8
+ " land" ,
9
+ " playform"
10
+ ],
11
+ "homepage" : " HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode#readme" ,
12
+ "bugs" : {
13
+ "url" : " HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode/issues"
14
+ },
15
+ "repository" : {
16
+ "type" : " git" ,
17
+ "url" : " git+HTTPS://github.com/CodeEditorLand/LandGeneratorCode.git"
18
+ },
19
+ "license" : " SEE LICENSE IN LICENSE" ,
20
+ "author" : {
21
+ "name" : " Source 🖋️ Open 👐🏻" ,
22
+ "email" :
" Source/[email protected] " ,
23
+ "url" : " HTTPS://Editor.Land"
24
+ },
25
+ "type" : " module" ,
26
+ "scripts" : {
27
+ "prepublishOnly" : " Build 'Source/**/*.ts'"
28
+ },
4
29
"dependencies" : {
5
30
"@esbuild-plugins/node-globals-polyfill" : " 0.2.3" ,
6
31
"@types/assert" : " 1.5.11" ,
16
41
"ts-loader" : " 9.5.2" ,
17
42
"util" : " 0.12.5"
18
43
},
19
- "devDependencies" : {}
44
+ "devDependencies" : {
45
+ "@playform/build" : " 0.2.1"
46
+ },
47
+ "publishConfig" : {
48
+ "access" : " public"
49
+ }
20
50
}
Original file line number Diff line number Diff line change 1
- {
2
- "compilerOptions" : {
3
- "module" : " Node16" ,
4
- "target" : " ES2022" ,
5
- "outDir" : " out" ,
6
- "lib" : [
7
- " ES2022"
8
- ],
9
- "sourceMap" : true ,
10
- "rootDir" : " src" ,
11
- "strict" : true , /* enable all strict type-checking options */
12
- /* Additional Checks */
13
- // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
14
- // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
15
- // "noUnusedParameters": true, /* Report errors on unused parameters. */
16
- }
17
- }
Original file line number Diff line number Diff line change 1
- {
2
- "compilerOptions" : {
3
- "module" : " Node16" ,
4
- "target" : " ES2022" ,
5
- "lib" : [
6
- " ES2022"
7
- ],
8
- "sourceMap" : true ,
9
- "rootDir" : " src" ,
10
- "strict" : true , /* enable all strict type-checking options */
11
- /* Additional Checks */
12
- // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13
- // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
14
- // "noUnusedParameters": true, /* Report errors on unused parameters. */
15
- }
16
- }
Original file line number Diff line number Diff line change 1
- {
2
- "compilerOptions" : {
3
- "module" : " Node16" ,
4
- "target" : " ES2022" ,
5
- "lib" : [
6
- " ES2022"
7
- ],
8
- "sourceMap" : true ,
9
- "rootDir" : " src" ,
10
- "strict" : true , /* enable all strict type-checking options */
11
- /* Additional Checks */
12
- // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13
- // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
14
- // "noUnusedParameters": true, /* Report errors on unused parameters. */
15
- }
16
- }
Original file line number Diff line number Diff line change 1
- {
2
- "compilerOptions" : {
3
- "module" : " Node16" ,
4
- "target" : " ES2020" ,
5
- "outDir" : " dist" ,
6
- "lib" : [
7
- " ES2020" , " WebWorker"
8
- ],
9
- "sourceMap" : true ,
10
- "rootDir" : " src" ,
11
- "strict" : true , /* enable all strict type-checking options */
12
- /* Additional Checks */
13
- // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
14
- // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
15
- // "noUnusedParameters": true, /* Report errors on unused parameters. */
16
- }
17
- }
Original file line number Diff line number Diff line change 1
- {
2
- "extends" : " ../tsconfig-base.json" ,
3
- "compilerOptions" : {
4
- // noEmit prevents the default tsc from building this--we use webpack instead
5
- "noEmit" : true ,
6
- "rootDir" : " ." ,
7
- "module" : " esnext" ,
8
- "moduleResolution" : " bundler" ,
9
- "lib" : [" ES2019" , " dom" ],
10
- "types" : [" webpack-env" , " vscode-notebook-renderer" ],
11
- }
12
- }
Original file line number Diff line number Diff line change 1
- {
2
- "extends" : " ../tsconfig-base.json" ,
3
- "compilerOptions" : {
4
- "rootDir" : " ." ,
5
- "outDir" : " ../../out/extension" ,
6
- },
7
- "references" : []
8
- }
Original file line number Diff line number Diff line change 1
1
{
2
- "files" : [],
3
- "references" : [
4
- {
5
- "path" : " ./src/client"
6
- },
7
- {
8
- "path" : " ./src/test"
9
- },
10
- {
11
- "path" : " ./src/extension"
12
- }
13
- ]
2
+ "compilerOptions" : {
3
+ "baseUrl" : " ./" ,
4
+ "outDir" : " Target" ,
5
+ "rootDir" : " src"
6
+ },
7
+ "extends" : " @playform/build/tsconfig" ,
8
+ "files" : [],
9
+ "include" : [
10
+ " src"
11
+ ],
12
+ "references" : [
13
+ {
14
+ "path" : " ./src/client"
15
+ },
16
+ {
17
+ "path" : " ./src/test"
18
+ },
19
+ {
20
+ "path" : " ./src/extension"
21
+ }
22
+ ]
14
23
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " generator-code" ,
3
+ "version" : " 0.0.1" ,
4
+ "private" : false ,
3
5
"description" : " Yeoman generator for Visual Studio Code extensions." ,
6
+ "keywords" : [
7
+ " codeeditorland" ,
8
+ " land" ,
9
+ " playform"
10
+ ],
11
+ "homepage" : " HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode#readme" ,
12
+ "bugs" : {
13
+ "url" : " HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode/issues"
14
+ },
15
+ "repository" : {
16
+ "type" : " git" ,
17
+ "url" : " git+HTTPS://github.com/CodeEditorLand/LandGeneratorCode.git"
18
+ },
19
+ "license" : " SEE LICENSE IN LICENSE" ,
20
+ "author" : {
21
+ "name" : " Source 🖋️ Open 👐🏻" ,
22
+ "email" :
" Source/[email protected] " ,
23
+ "url" : " HTTPS://Editor.Land"
24
+ },
25
+ "type" : " module" ,
4
26
"main" : " ./generators/app/index.js" ,
5
27
"scripts" : {
6
- "prepublishOnly" : " npm test " ,
28
+ "prepublishOnly" : " Build 'Source/**/*.ts' " ,
7
29
"preversion" : " npm test" ,
8
30
"postversion" : " git push && git push --tags"
9
31
},
15
37
"yosay" : " 3.0.0"
16
38
},
17
39
"devDependencies" : {
40
+ "@playform/build" : " 0.2.1" ,
18
41
"@types/node" : " 22.13.14" ,
19
42
"jsonc-parser" : " 3.3.1"
43
+ },
44
+ "publishConfig" : {
45
+ "access" : " public"
20
46
}
21
47
}
You can’t perform that action at this time.
0 commit comments