34 lines
750 B
JSON
34 lines
750 B
JSON
{
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifier": true
|
|
},
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"moduleResolution": "NodeNext", // or "node16"/"nodenext"
|
|
"module": "NodeNext", // or "node16"/"nodenext"
|
|
|
|
"declaration": true,
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@shared/*": ["../shared/*"],
|
|
"@scripts/*": ["scripts/*"]
|
|
}
|
|
},
|
|
"include": ["src", "tests", "scripts"],
|
|
"references": [
|
|
{
|
|
"path": "../shared"
|
|
}
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|