From ea35281d637cf326c4d808111a59d986c92e6a4b Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sun, 1 Jul 2018 23:37:10 +0900 Subject: chore: move //src/js to //js refs: #285 --- tsconfig.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') 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"] +} -- cgit v1.2.3