Files
component-party/tsconfig.json
P. Christopher Bowers cb65abd8d1 feat: ♻️ Added path aliases
Improved import statements by adding path aliases, ensuring formatting, and adding all extensions.
2022-05-11 10:18:35 -04:00

24 lines
554 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"module": "es2020",
"lib": ["es2018", "dom"],
"paths": {
"@components/*": ["src/components/*"],
"@utils/*": ["src/utils/*"],
"@layouts/*": ["src/layouts/*"],
"@config/*": ["src/*"]
}
}
}