Skip to content

Commit 9c61923

Browse files
Cleaning up tsconfig.
1 parent 909871b commit 9c61923

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tsconfig.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4+
"paths": {
5+
"@/*": ["src/*"],
6+
"@": ["src"]
7+
},
48
"resolveJsonModule": true,
59
"isolatedModules": true,
610
"jsx": "preserve",
7-
8-
"module": "ESNext",
11+
"module": "ESNext",
912
"moduleResolution": "bundler",
1013
"target": "ES2023",
1114
//"strict": true,
1215
//"esModuleInterop": true,
13-
14-
1516
"declaration": true,
1617
"removeComments": true,
1718
"emitDecoratorMetadata": true,
1819
"experimentalDecorators": true,
1920
"allowSyntheticDefaultImports": true,
2021
"sourceMap": true,
22+
"rootDir": "./src",
2123
"outDir": "./dist",
2224
"incremental": true,
2325
"skipLibCheck": true,

0 commit comments

Comments
 (0)