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 { Moment } from "moment";
import { Nullable } from "../helpers"; import { Nullable } from "@/helpers";
import { Identifiable } from "./common"; import { Identifiable } from "./common";
export enum InternshipType { export enum InternshipType {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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