mirror of
https://github.com/flarum/framework.git
synced 2025-04-02 23:19:04 +08:00
Add support for Flarum typings in tsconfig
This commit is contained in:
parent
df4b5969e3
commit
f1635cde13
@ -23,7 +23,12 @@ A baseline `tsconfig.json` is provided below that you can modify as needed. This
|
|||||||
"include": ["src/**/*"],
|
"include": ["src/**/*"],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
// This will output typings to `dist-typings`
|
// This will output typings to `dist-typings`
|
||||||
"declarationDir": "./dist-typings"
|
"declarationDir": "./dist-typings",
|
||||||
|
"paths": {
|
||||||
|
"flarum/*": ["../vendor/flarum/core/js/dist-typings/*"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
You'll also need to ensure that you run `composer update` in your extension's root directory to ensure that a copy of core is downloaded to your `vendor` folder. Remember that `vendor` should **not** be committed to git repositories.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user