Remove everything related to TypeScript

This commit is contained in:
Daniël van Noord
2022-06-19 20:50:56 +02:00
parent 3fddc1d249
commit 8cfc980546
23 changed files with 28 additions and 1068 deletions

View File

@@ -1,6 +1,6 @@
/** General functions to format or beautify strings */
import { metric, shortScale, shortScaleAbbreviated } from '../../Data/Scales.ts';
import { metric, shortScale, shortScaleAbbreviated } from '../../Data/Scales';
import { BackupFunctions } from '../../Main/VariablesAndData';
/**

View File

@@ -1,7 +1,7 @@
/** Functions related to the Bottom Bar */
import { CacheObjects1, CacheObjects10, CacheObjects100 } from '../../Cache/VariablesAndData';
import { VersionMajor, VersionMinor } from '../../Data/Moddata.ts';
import { VersionMajor, VersionMinor } from '../../Data/Moddata';
import Beautify from '../BeautifyAndFormatting/Beautify';
import FormatTime from '../BeautifyAndFormatting/FormatTime';
import GetTimeColour from '../BeautifyAndFormatting/GetTimeColour';

View File

@@ -3,7 +3,7 @@
import { AddMissingUpgrades } from './CreateMissingUpgrades';
import * as CreateSections from './CreateStatsSections';
import * as CreateElements from './CreateDOMElements';
import * as GameData from '../../../Data/Gamedata.ts';
import * as GameData from '../../../Data/Gamedata';
import {
CacheAverageClicks,

View File

@@ -1,6 +1,6 @@
/** Functions to create the individual sections of the Statistics page */
import * as GameData from '../../../Data/Gamedata.ts';
import * as GameData from '../../../Data/Gamedata';
import { MaxChainCookieReward } from '../../../Cache/Stats/ChainCookies';
import {
CacheAvgCPSWithChoEgg,

View File

@@ -1,5 +1,5 @@
import { menuFunctions } from '@cookiemonsterteam/cookiemonsterframework';
import { LatestReleaseNotes, ModDescription } from '../../Data/Moddata.ts';
import { LatestReleaseNotes, ModDescription } from '../../Data/Moddata';
/**
* Creates the <div> to be added to the Info section

View File

@@ -1,5 +1,5 @@
import { menuFunctions as mF } from '@cookiemonsterteam/cookiemonsterframework';
import { ConfigGroups, ConfigGroupsNotification } from '../../Data/Sectionheaders.ts';
import { ConfigGroups, ConfigGroupsNotification } from '../../Data/Sectionheaders';
import settings from '../../Data/settings';
import UpdateColours from '../HelperFunctions/UpdateColours';
import RefreshScale from '../HelperFunctions/RefreshScale';