1 files changed, 6 insertions, 1 deletions
diff --git a/cdn/tsconfig.json b/cdn/tsconfig.json
index 08e39435..2daac1ad 100644
--- a/cdn/tsconfig.json
+++ b/cdn/tsconfig.json
@@ -65,6 +65,11 @@
/* Advanced Options */
"skipLibCheck": true /* Skip type checking of declaration files. */,
- "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
+ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
+ "baseUrl": ".",
+ "paths": {
+ "@fosscord/cdn/": ["src/index.ts"],
+ "@fosscord/cdn/*": ["src/*"]
+ }
}
}
|