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