20 lines
436 B
JSON
20 lines
436 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2024",
|
|
"rootDir": "./src",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|