aboutsummaryrefslogtreecommitdiff
path: root/libs/base-x/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'libs/base-x/tsconfig.json')
-rw-r--r--libs/base-x/tsconfig.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/libs/base-x/tsconfig.json b/libs/base-x/tsconfig.json
new file mode 100644
index 0000000..bb8d1dc
--- /dev/null
+++ b/libs/base-x/tsconfig.json
@@ -0,0 +1,31 @@
1{
2 "compilerOptions": {
3 "target": "ES5",
4 "module": "commonjs",
5 "outDir": "./src",
6 "declaration": true,
7 "rootDir": "./ts_src",
8 "types": [
9 "node"
10 ],
11 "allowJs": false,
12 "strict": true,
13 "noImplicitAny": true,
14 "strictNullChecks": true,
15 "strictFunctionTypes": true,
16 "strictBindCallApply": true,
17 "strictPropertyInitialization": true,
18 "noImplicitThis": true,
19 "alwaysStrict": true,
20 "esModuleInterop": false,
21 "noUnusedLocals": true,
22 "noUnusedParameters": true
23 },
24 "include": [
25 "ts_src/**/*.ts"
26 ],
27 "exclude": [
28 "**/*.spec.ts",
29 "node_modules/**/*"
30 ]
31}