update misskey-reversi to the new templates
This commit is contained in:
parent
ae16425230
commit
e83940038d
3 changed files with 15 additions and 12 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
* SPDX-License-Identifier: AGPL-3.0-only
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import CRC32 from 'crc-32';
|
import * as CRC32 from 'crc-32';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* true ... 黒
|
* true ... 黒
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,19 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/tsconfig",
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||||||
"extends": "../shared/tsconfig.web.json",
|
"extends": "../shared/tsconfig.web.jsonc",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./built/",
|
// Output
|
||||||
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": true,
|
||||||
|
"inlineSources": true,
|
||||||
|
"removeComments": false,
|
||||||
|
"noEmitOnError": false,
|
||||||
|
"noEmit": false,
|
||||||
|
"composite": true,
|
||||||
|
"outDir": "built",
|
||||||
|
"rootDir": "src",
|
||||||
|
"tsBuildInfoFile": "built/tsconfig.game.json"
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"./src/**/*.ts"
|
"./src/**/*.ts"
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,8 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/tsconfig",
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||||||
"extends": "../shared/tsconfig.node.json",
|
"extends": "../shared/tsconfig.scripts.jsonc",
|
||||||
"compilerOptions": {
|
|
||||||
"noImplicitAny": false,
|
|
||||||
"noEmit": true
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"*.ts",
|
"*.ts",
|
||||||
"*.js"
|
"*.js"
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"node_modules",
|
|
||||||
"built"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue