diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 00:18:41 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 00:18:41 +0900 |
| commit | 320f5fedfb0fe0c6761ba0ba5a4d37b730975f41 (patch) | |
| tree | 9f5e9b7c081b2d976bb2dd348d74dcfc6c606d4f /src/tsconfig.json | |
| parent | npm run watchでサーバーサイドもwatchするように (diff) | |
| download | sharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.tar.gz sharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.tar.bz2 sharkey-320f5fedfb0fe0c6761ba0ba5a4d37b730975f41.zip | |
eslintrcとtsconfigを整理
Diffstat (limited to 'src/tsconfig.json')
| -rw-r--r-- | src/tsconfig.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/tsconfig.json b/src/tsconfig.json new file mode 100644 index 0000000000..95cb35fc5f --- /dev/null +++ b/src/tsconfig.json @@ -0,0 +1,39 @@ +{ + "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", + "./@types" + ], + "lib": [ + "esnext" + ] + }, + "compileOnSave": false, + "include": [ + "./**/*.ts" + ], + "exclude": [ + "./client/**/*.ts" + ] +} |