summaryrefslogtreecommitdiff
path: root/src/client/tsconfig.json
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-11-13 12:23:49 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-11-13 12:23:49 +0900
commit2795fe457909c687f668d020ef65d52abc3182fb (patch)
tree0a52e4e4d854333496fcc487560c93c3de5d5eb5 /src/client/tsconfig.json
parentMerge branch 'develop' (diff)
parent12.96.0 (diff)
downloadmisskey-2795fe457909c687f668d020ef65d52abc3182fb.tar.gz
misskey-2795fe457909c687f668d020ef65d52abc3182fb.tar.bz2
misskey-2795fe457909c687f668d020ef65d52abc3182fb.zip
Merge branch 'develop'
Diffstat (limited to 'src/client/tsconfig.json')
-rw-r--r--src/client/tsconfig.json42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/client/tsconfig.json b/src/client/tsconfig.json
deleted file mode 100644
index 7a26047ddf..0000000000
--- a/src/client/tsconfig.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "compilerOptions": {
- "allowJs": true,
- "noEmitOnError": false,
- "noImplicitAny": false,
- "noImplicitReturns": true,
- "noUnusedParameters": false,
- "noUnusedLocals": true,
- "noFallthroughCasesInSwitch": true,
- "declaration": false,
- "sourceMap": false,
- "target": "es2017",
- "module": "esnext",
- "moduleResolution": "node",
- "removeComments": false,
- "noLib": false,
- "strict": true,
- "strictNullChecks": true,
- "experimentalDecorators": true,
- "resolveJsonModule": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["../*"],
- "@client/*": ["./*"],
- "@lib/*": ["../../lib/*"],
- },
- "typeRoots": [
- "node_modules/@types",
- "src/@types",
- "src/client/@types"
- ],
- "lib": [
- "esnext",
- "dom",
- "webworker"
- ]
- },
- "compileOnSave": false,
- "include": [
- "./**/*.ts"
- ]
-}