Skip to content

Commit c1f9678

Browse files
committed
add OSTS types
1 parent e99ce7a commit c1f9678

2 files changed

Lines changed: 72 additions & 0 deletions

File tree

.gitignore

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# OS generated files #
2+
.DS_Store
3+
.DS_Store?
4+
._*
5+
.Spotlight-V100
6+
.Trashes
7+
ehthumbs.db
8+
Thumbs.db
9+
10+
# Dependencies
11+
.node_modules/
12+
node_modules
13+
jspm_packages/
14+
15+
# Build outputs
16+
build/
17+
dist/
18+
out/
19+
20+
# Environment files
21+
.env
22+
.env.*
23+
# Allow example .env file
24+
!.env.example
25+
26+
# Coverage directory used by testing tools
27+
coverage
28+
29+
# IDE files
30+
.vs/
31+
.vscode/
32+
.idea/
33+
*.swp
34+
*.swo
35+
*~
36+
37+
# TypeScript type definitions
38+
@types/*
39+
40+
# TypeScript cache
41+
*.tsbuildinfo
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional eslint cache
47+
.eslintcache
48+
49+
# Logs
50+
logs
51+
*.log
52+
npm-debug.log*
53+
yarn-debug.log*
54+
yarn-error.log*
55+
lerna-debug.log*
56+
57+
# Temporary files
58+
*.tmp
59+
*.temp
60+
temp/
61+
tmp/

tsconfig.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"compilerOptions": {
3+
"lib": [
4+
"ES2015"
5+
],
6+
"noEmit": true,
7+
"typeRoots": [
8+
"@types/office-scripts"
9+
]
10+
}
11+
}

0 commit comments

Comments
 (0)