✌️
This commit is contained in:
parent
65574abab7
commit
ee050cc37e
5 changed files with 41 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,6 +4,7 @@
|
||||||
/node_modules
|
/node_modules
|
||||||
/build
|
/build
|
||||||
/built
|
/built
|
||||||
|
built
|
||||||
/data
|
/data
|
||||||
/.cache-loader
|
/.cache-loader
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
|
|
|
@ -43,7 +43,6 @@
|
||||||
"@types/is-root": "1.0.0",
|
"@types/is-root": "1.0.0",
|
||||||
"@types/is-url": "1.2.28",
|
"@types/is-url": "1.2.28",
|
||||||
"@types/js-yaml": "3.11.2",
|
"@types/js-yaml": "3.11.2",
|
||||||
"@types/jsdom": "11.0.6",
|
|
||||||
"@types/koa": "2.0.46",
|
"@types/koa": "2.0.46",
|
||||||
"@types/koa-bodyparser": "5.0.1",
|
"@types/koa-bodyparser": "5.0.1",
|
||||||
"@types/koa-compress": "2.0.8",
|
"@types/koa-compress": "2.0.8",
|
||||||
|
@ -61,7 +60,6 @@
|
||||||
"@types/mongodb": "3.1.3",
|
"@types/mongodb": "3.1.3",
|
||||||
"@types/ms": "0.7.30",
|
"@types/ms": "0.7.30",
|
||||||
"@types/node": "10.5.5",
|
"@types/node": "10.5.5",
|
||||||
"@types/parse5": "5.0.0",
|
|
||||||
"@types/portscanner": "2.1.0",
|
"@types/portscanner": "2.1.0",
|
||||||
"@types/pug": "2.0.4",
|
"@types/pug": "2.0.4",
|
||||||
"@types/qrcode": "1.2.0",
|
"@types/qrcode": "1.2.0",
|
||||||
|
|
18
src/games/reversi/package.json
Normal file
18
src/games/reversi/package.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "misskey-reversi",
|
||||||
|
"version": "0.0.5",
|
||||||
|
"description": "Misskey reversi engine",
|
||||||
|
"keywords": [
|
||||||
|
"misskey"
|
||||||
|
],
|
||||||
|
"author": "syuilo <i@syuilo.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"repository": "https://github.com/syuilo/misskey.git",
|
||||||
|
"bugs": "https://github.com/syuilo/misskey/issues",
|
||||||
|
"main": "./built/core.js",
|
||||||
|
"types": "./built/core.d.ts",
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc"
|
||||||
|
},
|
||||||
|
"dependencies": {}
|
||||||
|
}
|
21
src/games/reversi/tsconfig.json
Normal file
21
src/games/reversi/tsconfig.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"noEmitOnError": false,
|
||||||
|
"noImplicitAny": false,
|
||||||
|
"noImplicitReturns": true,
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"declaration": true,
|
||||||
|
"sourceMap": false,
|
||||||
|
"target": "es2017",
|
||||||
|
"module": "commonjs",
|
||||||
|
"removeComments": false,
|
||||||
|
"noLib": false,
|
||||||
|
"outDir": "./built",
|
||||||
|
"rootDir": "./"
|
||||||
|
},
|
||||||
|
"compileOnSave": false,
|
||||||
|
"include": [
|
||||||
|
"./core.ts"
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
const { lib: emojilib } = require('emojilib');
|
const { lib: emojilib } = require('emojilib');
|
||||||
import { JSDOM } from 'jsdom';
|
const JSDOM = require('jsdom');
|
||||||
import config from '../config';
|
import config from '../config';
|
||||||
import { INote } from '../models/note';
|
import { INote } from '../models/note';
|
||||||
import { TextElement } from './parse';
|
import { TextElement } from './parse';
|
||||||
|
|
Loading…
Reference in a new issue