2023-04-06 11:04:53 +08:00
|
|
|
{
|
2023-11-02 12:57:11 +08:00
|
|
|
"extends": "../tsconfig.json",
|
2023-04-06 11:04:53 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"target": "ES2022",
|
2023-09-20 01:18:01 -07:00
|
|
|
"module": "NodeNext",
|
2023-04-06 11:04:53 +08:00
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"outDir": "dist",
|
|
|
|
"allowJs": false
|
|
|
|
},
|
2023-06-17 17:03:57 +08:00
|
|
|
"include": ["./src"],
|
|
|
|
"ts-node": {
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
|
|
|
}
|
2023-04-06 11:04:53 +08:00
|
|
|
}
|