32 lines
452 B
TypeScript
32 lines
452 B
TypeScript
|
const eslintrc = `module.exports = {
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es6: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: [
|
||
|
'@scode'
|
||
|
],
|
||
|
globals: {
|
||
|
Atomics: 'readonly',
|
||
|
SharedArrayBuffer: 'readonly'
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018
|
||
|
}
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
const gitignore = `/node_modules/
|
||
|
/dist/
|
||
|
/.nyc_output/
|
||
|
/coverage/
|
||
|
`;
|
||
|
|
||
|
const index = '';
|
||
|
|
||
|
const npmrc = `@scode:registry=https://npm.scode.ovh
|
||
|
`;
|
||
|
|
||
|
export { eslintrc, gitignore, index, npmrc };
|