f63a99c27e
Signed-off-by: T-Hax <>
32 lines
809 B
JSON
32 lines
809 B
JSON
{
|
|
"include": ["./src"],
|
|
"exclude": ["node_modules"],
|
|
"ts-node": {
|
|
// Do not forget to `npm i -D tsconfig-paths`
|
|
"require": ["tsconfig-paths/register"]
|
|
},
|
|
"compilerOptions": {
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~NODE 18 STANDARD~~~~~~~~~~~~~~~~~~~~~~~
|
|
"target": "es2022",
|
|
"module": "CommonJS",
|
|
"lib": ["es2022"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
"outDir": "./build",
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"src/*": ["src/*"]
|
|
}
|
|
}
|
|
}
|