30 lines
638 B
JSON
30 lines
638 B
JSON
// {
|
|
// "compilerOptions": {
|
|
// "outDir": "./built",
|
|
// "allowJs": true,
|
|
// "target": "ES2017",
|
|
// "module": "NodeNext"
|
|
// },
|
|
// "include": ["./src/**/*"]
|
|
// }
|
|
|
|
{
|
|
"extends": "@tsconfig/node20/tsconfig.json",
|
|
"version": "4.4.2",
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./lib"
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"ts-node": {
|
|
"experimentalSpecifierResolution": "node",
|
|
"transpileOnly": true,
|
|
"esm": true,
|
|
},
|
|
} |