31 lines
717 B
JSON
31 lines
717 B
JSON
{
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifier": true
|
|
},
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext",
|
|
"jsx": "react-jsx",
|
|
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": false,
|
|
"noEmitOnError": false,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@emails/*": ["emails/*"],
|
|
"@lua/*": ["src/_luaScripts/*"],
|
|
}
|
|
},
|
|
"include": ["src", "emails", "src/external/clickhouse/queries"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|