Skip to content

Commit 9e92bc6

Browse files
committed
constellation.wiki.js summary
1 parent caca524 commit 9e92bc6

6 files changed

Lines changed: 41 additions & 0 deletions

File tree

.babelrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"presets":[["env",{"modules":false,"targets":{"browsers":[">0.25%","not ie 11","not op_mini all"]}}]],"plugins":["@vue/babel-plugin-jsx","@babel/plugin-syntax-dynamic-import",["@babel/plugin-proposal-decorators",{"decoratorsBeforeExport":false,"legacy":false}],["@babel/plugin-proposal-class-properties",{"loose":false}]]}

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": false,
7+
"trailingComma": "none",
8+
"bracketSpacing": true,
9+
"jsxBracketSameLine": false,
10+
"fluid": false
11+
}

netlify.toml

Whitespace-only changes.

sandbox.config.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"infiniteLoopProtection": true,
3+
"hardReloadOnChange": false,
4+
"view": "browser"
5+
}

tsconfig.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"compilerOptions": {
3+
"outDir": "build/dist",
4+
"module": "esnext",
5+
"target": "es5",
6+
"lib": [
7+
"es6",
8+
"dom"
9+
],
10+
"sourceMap": true,
11+
"allowJs": true,
12+
"jsx": "react",
13+
"moduleResolution": "node",
14+
"rootDir": "src",
15+
"forceConsistentCasingInFileNames": true,
16+
"noImplicitReturns": true,
17+
"noImplicitThis": true,
18+
"noImplicitAny": true,
19+
"strictNullChecks": true,
20+
"suppressImplicitAnyIndexErrors": true,
21+
"noUnusedLocals": true
22+
}
23+
}

vercel.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)