We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 909871b commit 9c61923Copy full SHA for 9c61923
tsconfig.json
@@ -1,23 +1,25 @@
1
{
2
"compilerOptions": {
3
"baseUrl": ".",
4
+ "paths": {
5
+ "@/*": ["src/*"],
6
+ "@": ["src"]
7
+ },
8
"resolveJsonModule": true,
9
"isolatedModules": true,
10
"jsx": "preserve",
-
- "module": "ESNext",
11
+ "module": "ESNext",
12
"moduleResolution": "bundler",
13
"target": "ES2023",
14
//"strict": true,
15
//"esModuleInterop": true,
16
"declaration": true,
17
"removeComments": true,
18
"emitDecoratorMetadata": true,
19
"experimentalDecorators": true,
20
"allowSyntheticDefaultImports": true,
21
"sourceMap": true,
22
+ "rootDir": "./src",
23
"outDir": "./dist",
24
"incremental": true,
25
"skipLibCheck": true,
0 commit comments