aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt-odlux/odlux/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt-odlux/odlux/tsconfig.json')
-rw-r--r--sdnr/wt-odlux/odlux/tsconfig.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/sdnr/wt-odlux/odlux/tsconfig.json b/sdnr/wt-odlux/odlux/tsconfig.json
new file mode 100644
index 000000000..c4cc6e0d4
--- /dev/null
+++ b/sdnr/wt-odlux/odlux/tsconfig.json
@@ -0,0 +1,39 @@
+{
+ "compilerOptions": {
+ "sourceMap": true,
+ "forceConsistentCasingInFileNames": true,
+ "allowSyntheticDefaultImports": true,
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
+ "noFallthroughCasesInSwitch": true,
+ "noImplicitAny": true,
+ "noImplicitReturns": true,
+ "noImplicitThis": true,
+ "strictNullChecks": true,
+ "pretty": true,
+ "newLine": "LF",
+ "module": "es2015",
+ "target": "es2016",
+ "moduleResolution": "node",
+ "experimentalDecorators": true,
+ "jsx": "preserve",
+ "lib": [
+ "dom",
+ "es2015",
+ "es2016"
+ ],
+ "types": [
+ "prop-types",
+ "react",
+ "react-dom"
+ ]
+ },
+ "exclude": [
+ "node_modules",
+ "apps/*/dist",
+ "apps/*/node_modules"
+ ],
+ "include": [
+ "apps/*/src"
+ ]
+}