diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-10 10:27:05 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-10 10:27:05 +0900 |
| commit | ff7bb97d8ee04a6a56aaea8a09f9b4d7170f2064 (patch) | |
| tree | 54440ed27272a0c75fdd2ba9d3b83b095993c27c /src/web/app/tsconfig.json | |
| parent | wip (diff) | |
| download | misskey-ff7bb97d8ee04a6a56aaea8a09f9b4d7170f2064.tar.gz misskey-ff7bb97d8ee04a6a56aaea8a09f9b4d7170f2064.tar.bz2 misskey-ff7bb97d8ee04a6a56aaea8a09f9b4d7170f2064.zip | |
wip
Diffstat (limited to 'src/web/app/tsconfig.json')
| -rw-r--r-- | src/web/app/tsconfig.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/web/app/tsconfig.json b/src/web/app/tsconfig.json new file mode 100644 index 0000000000..e31b52dab1 --- /dev/null +++ b/src/web/app/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "allowJs": true, + "noEmitOnError": false, + "noImplicitAny": false, + "noImplicitReturns": true, + "noUnusedParameters": false, + "noUnusedLocals": true, + "noFallthroughCasesInSwitch": true, + "declaration": false, + "sourceMap": false, + "target": "es2017", + "module": "commonjs", + "removeComments": false, + "noLib": false, + "strict": true, + "strictNullChecks": false + }, + "compileOnSave": false, + "include": [ + "./**/*.ts" + ] +} |