Add '@' alias to simplify referencing paths from root

This commit is contained in:
Kacper Donat 2020-06-12 11:07:51 +02:00
parent 9e23538059
commit 50ed452ea2
8 changed files with 15 additions and 8 deletions

View File

@ -1,5 +1,5 @@
import { Moment } from "moment";
import { Nullable } from "../helpers";
import { Nullable } from "@/helpers";
import { Identifiable } from "./common";
export enum InternshipType {

View File

@ -1,6 +1,6 @@
import React, { HTMLProps, useEffect, useMemo, useState } from "react";
import { BranchOffice, Company, emptyAddress, emptyBranchOffice, emptyCompany, formatAddress } from "../data/company";
import { sampleCompanies } from "../provider/dummy";
import { BranchOffice, Company, emptyAddress, emptyBranchOffice, emptyCompany, formatAddress } from "@/data";
import { sampleCompanies } from "@/provider/dummy";
import { Autocomplete } from "@material-ui/lab";
import { Grid, TextField, Typography } from "@material-ui/core";
import { formFieldProps } from "./helpers";

View File

@ -1,4 +1,4 @@
import { DOMEvent } from "../helpers";
import { DOMEvent } from "@/helpers";
type UpdatingEvent = "onBlur" | "onChange" | "onInput";
type FormFieldHelperOptions<T> = {

View File

@ -1,4 +1,4 @@
import { Company } from "../../data/company";
import { Company } from "@/data";
import { makeIdSequence } from "./helpers";
const companySequence = makeIdSequence();

View File

@ -1,4 +1,4 @@
import { Identifiable } from "../../data";
import { Identifiable } from "@/data";
type SequenceGenerator = {
(): string;

View File

@ -1,4 +1,4 @@
import { Course, InternshipProgramEntry, Student } from "../../data"
import { Course, InternshipProgramEntry, Student } from "@/data"
import { makeIdSequence } from "./helpers";
const programEntryIdSequence = makeIdSequence();

View File

@ -18,7 +18,11 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"sourceMap": true
"sourceMap": true,
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src"

View File

@ -13,6 +13,9 @@ const config = {
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
alias: {
'@': path.resolve(__dirname, './src'),
}
},
module: {
rules: [{