Skip to content

Commit 494a3a0

Browse files
Elliott Marquezcopybara-github
authored andcommitted
docs(catalog): implement metadata shell for catalog
PiperOrigin-RevId: 534577741
1 parent b79413b commit 494a3a0

File tree

4 files changed

+45
-0
lines changed

4 files changed

+45
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,16 @@ node_modules
88
*.d.ts
99
!types/*.d.ts
1010
.wireit/
11+
12+
!catalog/**/*.css
13+
catalog/_dev
14+
catalog/_prod
15+
catalog/node_modules
16+
catalog/.wireit
17+
catalog/lib/
18+
catalog/build/
19+
catalog/site/components/*.md
20+
catalog/site/components/images
21+
catalog/*.tsbuildinfo
22+
catalog/stories/*/
23+
!catalog/stories/components/

.npmignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
node_modules
2+
*.js
3+
!web-test-runner.config.js
4+
!css-to-ts.js
5+
*.css
6+
*.css.ts
7+
*.map
8+
*.d.ts
9+
!types/*.d.ts
10+
.wireit/
11+
docs/
12+
catalog/

catalog/tsconfig.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"module": "es2022",
4+
"lib": ["es2022", "dom", "dom.iterable"],
5+
"target": "es2022",
6+
"declaration": true,
7+
"strict": true,
8+
"noFallthroughCasesInSwitch": true,
9+
"moduleResolution": "node",
10+
"allowSyntheticDefaultImports": true,
11+
"experimentalDecorators": true,
12+
"useDefineForClassFields": false,
13+
"forceConsistentCasingInFileNames": true,
14+
"noEmit": true,
15+
"skipLibCheck": true
16+
},
17+
"include": ["src/**/*", "stories/*", "stories/components"],
18+
"exclude": []
19+
}

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"types": ["lit", "jasmine"]
2828
},
2929
"exclude": [
30+
"catalog",
3031
"*/demo"
3132
]
3233
}

0 commit comments

Comments
 (0)