0.6.0 • Published 2 months ago

taro-define-config v0.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

taro-define-config

Provide a defineConfig function for tarojs config

CI NPM VERSION NPM DOWNLOADS LICENSE

!NOTE
Taro introduced a builtin defineConfig function since v3.6.9. Maybe you don't need this package.

Usage

// config/index.js

// @ts-check
const { defineConfig } = require('taro-define-config')

module.exports = defineConfig({
  projectName: 'hello-world',
  designWidth: 750,
})
// config/index.ts

import { defineConfig } from 'taro-define-config'

export default defineConfig({
  projectName: 'hello-world',
  designWidth: 750,
})

Why this package

Improve your TaroJS project configuration experience with:

  • 🤖 auto-suggestions
  • ✅ type checking (Use // @ts-check at the first line in your config file)
  • 📖 documentation
  • ⚠️ deprecation warnings

Extend plugin types

declare module 'taro-define-config' {
  export interface CustomPluginOptionsMap {
    'taro-plugin-custom': {
      enable?: boolean
    }
  }
}

Prior Art

Related link

License

MIT License © 2022 to PRESENT ntnyq

0.6.0

2 months ago

0.5.2

4 months ago

0.5.1

4 months ago

0.5.0

5 months ago

0.4.3

6 months ago

0.3.0

9 months ago

0.2.7

10 months ago

0.2.6

10 months ago

0.2.8

10 months ago

0.4.1

9 months ago

0.3.2

9 months ago

0.4.0

9 months ago

0.3.1

9 months ago

0.4.2

8 months ago

0.3.3

9 months ago

0.2.1

1 year ago

0.1.2

1 year ago

0.2.0

1 year ago

0.1.1

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.1.0

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago