2023-04-08 15:17:52 -04:00
|
|
|
{
|
|
|
|
"include": ["./src"],
|
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"ts-node": {
|
|
|
|
// Do not forget to `npm i -D tsconfig-paths`
|
|
|
|
"require": ["tsconfig-paths/register"]
|
|
|
|
},
|
|
|
|
"compilerOptions": {
|
2023-04-17 17:56:57 -04:00
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~NODE 18 STANDARD~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
"target": "es2022",
|
2023-04-08 15:17:52 -04:00
|
|
|
"module": "commonjs",
|
2023-04-17 17:56:57 -04:00
|
|
|
"lib": ["es2022"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2023-04-08 15:17:52 -04:00
|
|
|
"outDir": "./build",
|
2023-04-17 17:56:57 -04:00
|
|
|
"resolveJsonModule": true,
|
2023-04-08 15:17:52 -04:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"test/*": ["src/test/*"],
|
|
|
|
"types/*": ["src/types/*"],
|
|
|
|
"lib/*": ["src/lib/*"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|