mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-28 16:49:36 +07:00
19 lines
381 B
JSON
19 lines
381 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["./src/server/transformer/server.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|