@universis/percentile-ranking
Version:
Percentile ranking is a vital part of any student information system. It indicates how well a student performed in comparison to the students in the specific norm group, for example, in the same grade, class, or graduation event. This package implements t
23 lines (21 loc) • 456 B
text/typescript
import typescript from '@rollup/plugin-typescript';
export default [
{
input: 'src/index.ts',
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true
},
plugins: [typescript()]
},
{
input: 'src/index.ts',
output: {
file: 'dist/index.esm.js',
format: 'esm',
sourcemap: true
},
plugins: [typescript()]
}
];