summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2019-11-24 17:09:32 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-11-24 17:09:32 +0900
commitf7a328d66e8f0ddb5d7b6ca815bf86bba98895bb (patch)
tree78c78b428ee7aac5c4fefc61fe856da837a41fae /tsconfig.json
parentNew Crowdin translations (#5573) (diff)
downloadmisskey-f7a328d66e8f0ddb5d7b6ca815bf86bba98895bb.tar.gz
misskey-f7a328d66e8f0ddb5d7b6ca815bf86bba98895bb.tar.bz2
misskey-f7a328d66e8f0ddb5d7b6ca815bf86bba98895bb.zip
Update dependencies :rocket:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json67
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"
+ ]
}