diff options
Diffstat (limited to 'packages/misskey-js/tsconfig.json')
| -rw-r--r-- | packages/misskey-js/tsconfig.json | 25 |
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/**/*" + ] +} |