diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2018-07-01 23:37:10 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-01 17:22:36 +0200 |
| commit | ea35281d637cf326c4d808111a59d986c92e6a4b (patch) | |
| tree | c02b9836c4d5736aec2a412c2f82c589ed4c1d33 /tsconfig.json | |
| parent | 9528ee4a42eb0729a4467ddaaa3be573d9053fa2 (diff) | |
chore: move //src/js to //js
refs: #285
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..3a5161c55 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "allowJs": true, + "module": "commonjs", + "noImplicitAny": true, + "sourceMap": true, + "removeComments": true, + "preserveConstEnums": true, + "target": "es2017", + "noImplicitReturns": true, + "pretty": true, + "noFallthroughCasesInSwitch": true, + "allowUnreachableCode": false, + "experimentalDecorators": true + }, + "include": ["js/**/*.ts", "js/**/*.js"], + "exclude": ["js/mock_runtime.js", "js/node_modules"] +} |
