mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-31 20:35:52 +00:00
9f614517c0
* fix: tsconfig.jsonにskipLibCheck: trueを追加する * skipLibCheckで抜けたチェックを自前でやる
30 lines
620 B
JSON
30 lines
620 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": false,
|
|
"noEmit": true,
|
|
"removeComments": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"typeRoots": [
|
|
"./@types",
|
|
"./node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"esnext"
|
|
]
|
|
}
|
|
}
|