diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2019-11-24 17:09:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-11-24 17:09:32 +0900 |
| commit | f7a328d66e8f0ddb5d7b6ca815bf86bba98895bb (patch) | |
| tree | 78c78b428ee7aac5c4fefc61fe856da837a41fae /tsconfig.json | |
| parent | New Crowdin translations (#5573) (diff) | |
| download | misskey-f7a328d66e8f0ddb5d7b6ca815bf86bba98895bb.tar.gz misskey-f7a328d66e8f0ddb5d7b6ca815bf86bba98895bb.tar.bz2 misskey-f7a328d66e8f0ddb5d7b6ca815bf86bba98895bb.zip | |
Update dependencies :rocket:
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 67 |
1 files changed, 34 insertions, 33 deletions
diff --git a/tsconfig.json b/tsconfig.json index 62107507ac..b285259bce 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,35 +1,36 @@ { - "compilerOptions": { - "allowJs": true, - "noEmitOnError": false, - "noImplicitAny": true, - "noImplicitReturns": true, - "noUnusedParameters": false, - "noUnusedLocals": true, - "noFallthroughCasesInSwitch": true, - "declaration": false, - "sourceMap": true, - "target": "es2017", - "module": "commonjs", - "moduleResolution": "node", - "removeComments": false, - "noLib": false, - "strict": true, - "strictNullChecks": true, - "strictPropertyInitialization": false, - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "resolveJsonModule": true, - "typeRoots": [ - "node_modules/@types", - "src/@types" - ] - }, - "compileOnSave": false, - "include": [ - "./src/**/*.ts" - ], - "exclude": [ - "./src/client/app/**/*.ts" - ] + "compilerOptions": { + "allowJs": true, + "noEmitOnError": false, + "noImplicitAny": true, + "noImplicitReturns": true, + "noUnusedParameters": false, + "noUnusedLocals": true, + "noFallthroughCasesInSwitch": true, + "declaration": false, + "sourceMap": true, + "target": "es2017", + "module": "commonjs", + "moduleResolution": "node", + "removeComments": false, + "noLib": false, + "strict": true, + "strictNullChecks": true, + "strictPropertyInitialization": false, + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "resolveJsonModule": true, + "isolatedModules": true, + "typeRoots": [ + "node_modules/@types", + "src/@types" + ] + }, + "compileOnSave": false, + "include": [ + "./src/**/*.ts" + ], + "exclude": [ + "./src/client/app/**/*.ts" + ] } |