framework/extensions/akismet/js/tsconfig.json

18 lines
673 B
JSON
Raw Normal View History

{
2022-01-05 07:27:04 +08:00
// Use Flarum's tsconfig as a starting point
"extends": "flarum-tsconfig",
2022-01-05 07:27:04 +08:00
// This will match all .ts, .tsx, .d.ts, .js, .jsx files in your `src` folder
// and also tells your Typescript server to read core's global typings for
// access to `dayjs` and `$` in the global namespace.
"include": ["src/**/*", "../vendor/*/*/js/dist-typings/@types/**/*", "@types/**/*"],
"compilerOptions": {
2022-01-05 07:27:04 +08:00
// This will output typings to `dist-typings`
"declarationDir": "./dist-typings",
"baseUrl": ".",
"paths": {
"flarum/*": ["../vendor/flarum/core/js/dist-typings/*"],
"flarum/flags/*": ["../vendor/flarum/flags/js/dist-typings/*"]
}
}
}