Add '@' alias to simplify referencing paths from root
This commit is contained in:
parent
9e23538059
commit
50ed452ea2
@ -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 {
|
||||||
|
@ -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";
|
||||||
|
@ -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> = {
|
||||||
|
@ -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();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Identifiable } from "../../data";
|
import { Identifiable } from "@/data";
|
||||||
|
|
||||||
type SequenceGenerator = {
|
type SequenceGenerator = {
|
||||||
(): string;
|
(): string;
|
||||||
|
@ -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();
|
||||||
|
@ -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"
|
||||||
|
@ -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: [{
|
||||||
|
Loading…
Reference in New Issue
Block a user