summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-03-13 00:18:41 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-03-13 00:18:41 +0900
commit320f5fedfb0fe0c6761ba0ba5a4d37b730975f41 (patch)
tree9f5e9b7c081b2d976bb2dd348d74dcfc6c606d4f /tsconfig.json
parentnpm run watchでサーバーサイドもwatchするように (diff)
downloadsharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.tar.gz
sharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.tar.bz2
sharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.zip
eslintrcとtsconfigを整理
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json39
1 files changed, 0 insertions, 39 deletions
diff --git a/tsconfig.json b/tsconfig.json
deleted file mode 100644
index 075450bf64..0000000000
--- a/tsconfig.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "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"
- ],
- "lib": [
- "esnext"
- ]
- },
- "compileOnSave": false,
- "include": [
- "./src/**/*.ts"
- ],
- "exclude": [
- "./src/client/**/*.ts"
- ]
-}