Skip to content

Instantly share code, notes, and snippets.

@Nxt3
Nxt3 / spazz.txt
Created April 16, 2021 01:48
Minimap will spazz when it sees this
****** * *********** * **** *****************
****** * ***** * **** *******
****** * ******* * **** *****************
****** * **** * **** *************
****** * ************* *************** * **** ****************
****** * ******************* * **** **************************************************************************
****** * ******************** * **** ***************************************************************************
****** * ************************ * **** *********************************
import 'jest-preset-angular';
#!/usr/bin/env node
const glob = require('glob');
const argv = require('yargs').argv;
const projectArg: string = argv.project;
const spawn = require('child_process').spawn;
// Prints out a message in bold, cyan letters
function printInfoMessage(message: string): void {
console.info(message);
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist/out-tsc/spec",
"module": "commonjs",
"target": "es5",
"allowJs": true,
"types": ["jest", "node"]
},
"include": ["**/*.spec.ts", "**/*.d.ts"],
module.exports = {
globals: {
'ts-jest': {
tsConfigFile: 'tsconfig.spec.json'
},
__TRANSFORM_HTML__: true
},
preset: 'jest-preset-angular',
roots: ['<rootDir>/apps/', '<rootDir>/libs/'],
transform: {