summaryrefslogtreecommitdiffstats
path: root/theme/tests/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'theme/tests/tsconfig.json')
-rw-r--r--theme/tests/tsconfig.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/theme/tests/tsconfig.json b/theme/tests/tsconfig.json
new file mode 100644
index 0000000..a901a4d
--- /dev/null
+++ b/theme/tests/tsconfig.json
@@ -0,0 +1,20 @@
+{
+ "compilerOptions": {
+ "target": "es2016",
+ "module": "commonjs",
+ "moduleResolution": "node",
+ "strict": true,
+ "noImplicitAny": true,
+ "noUnusedLocals": true,
+ "declaration": true,
+ "sourceMap": true,
+ "baseUrl": ".",
+ "outDir": "./dist",
+ "plugins": [{
+ "name": "tslint-language-service"
+ }]
+ },
+ "include": [
+ "test"
+ ]
+}