1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 19:05:55 +02:00

introduce api-extractor

This commit is contained in:
syuilo
2021-07-30 13:01:52 +09:00
parent 2ffff0fa61
commit 32ff71a67d
8 changed files with 3395 additions and 5 deletions

View File

@@ -1,8 +1,11 @@
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./built/",
"removeComments": true,
"strict": true,
@@ -10,13 +13,13 @@
"strictNullChecks": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"esModuleInterop": true
},
"include": [
"src/**/*",
"src/**/*"
],
"exclude": [
"node_modules",
"test/**/*",
"test/**/*"
]
}