aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/tsconfig.json')
-rw-r--r--scripts/tsconfig.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json
new file mode 100644
index 0000000..bc6f4be
--- /dev/null
+++ b/scripts/tsconfig.json
@@ -0,0 +1,28 @@
+{
+ "compilerOptions": {
+ "esModuleInterop": true,
+ "target": "ESNext",
+ "module": "ESNext",
+ "moduleResolution": "node",
+ "strict": true,
+ "lib": [
+ "ESNext",
+ "DOM"
+ ],
+ "noImplicitAny": true ,
+ "strictNullChecks": true ,
+ "strictFunctionTypes": true ,
+ "strictBindCallApply": true ,
+ "strictPropertyInitialization": true ,
+ "noImplicitThis": true ,
+ "alwaysStrict": true ,
+ "downlevelIteration": true,
+ "outDir": ".",
+ },
+ "include": [
+ "./edit-data.ts"
+ ],
+ "exclude": [
+ "./*.js",
+ ]
+}