14 lines
325 B
JSON
14 lines
325 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"outDir": "build",
|
|
"esModuleInterop": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"transpiler": "ts-node/transpilers/swc-experimental"
|
|
}
|
|
}
|