summaryrefslogtreecommitdiff
path: root/packages/misskey-js/tsconfig.json
diff options
context:
space:
mode:
authorKagami Sascha Rosylight <saschanaz@outlook.com>2023-03-30 02:33:19 +0200
committerGitHub <noreply@github.com>2023-03-30 09:33:19 +0900
commitcee1d5e2d01359e6d762a10fc67d4e7c1cc830eb (patch)
tree45eab3096b1983ae5267caab4aa4c5eff77b6e5d /packages/misskey-js/tsconfig.json
parentNew Crowdin updates (#10407) (diff)
downloadmisskey-cee1d5e2d01359e6d762a10fc67d4e7c1cc830eb.tar.gz
misskey-cee1d5e2d01359e6d762a10fc67d4e7c1cc830eb.tar.bz2
misskey-cee1d5e2d01359e6d762a10fc67d4e7c1cc830eb.zip
chore: integrate misskey-js as a workspace item (git subtree) (#10409)
* Additional changes for the merge * api-misskey-js
Diffstat (limited to 'packages/misskey-js/tsconfig.json')
-rw-r--r--packages/misskey-js/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/misskey-js/tsconfig.json b/packages/misskey-js/tsconfig.json
new file mode 100644
index 0000000000..a03a242628
--- /dev/null
+++ b/packages/misskey-js/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "$schema": "http://json.schemastore.org/tsconfig",
+ "compilerOptions": {
+ "target": "es2020",
+ "module": "commonjs",
+ "declaration": true,
+ "declarationMap": true,
+ "sourceMap": true,
+ "outDir": "./built/",
+ "removeComments": true,
+ "strict": true,
+ "strictFunctionTypes": true,
+ "strictNullChecks": true,
+ "experimentalDecorators": true,
+ "noImplicitReturns": true,
+ "esModuleInterop": true
+ },
+ "include": [
+ "src/**/*"
+ ],
+ "exclude": [
+ "node_modules",
+ "test/**/*"
+ ]
+}