summaryrefslogtreecommitdiff
path: root/tsconfig.build.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.build.json')
-rw-r--r--tsconfig.build.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/tsconfig.build.json b/tsconfig.build.json
new file mode 100644
index 0000000..e8fd8a4
--- /dev/null
+++ b/tsconfig.build.json
@@ -0,0 +1,13 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "allowImportingTsExtensions": false,
+ "noEmit": false,
+ "noEmitOnError": true,
+ "outDir": "web/static",
+ "rootDir": "web/frontend",
+ "sourceMap": false
+ },
+ "include": ["web/frontend/**/*.ts", "web/frontend/**/*.d.ts"],
+ "exclude": ["web/frontend/**/*.test.ts"]
+}