21 lines
470 B
JSON
21 lines
470 B
JSON
{
|
|
"extends": "ts-config",
|
|
"compilerOptions": {
|
|
"outDir": "build/main",
|
|
"module": "CommonJS",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node",
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "node"
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/.*.ts"],
|
|
"exclude": ["node_modules", "build"]
|
|
}
|