42 lines
810 B
JSON
42 lines
810 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": "./",
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*", "./dist/*"
|
|
]
|
|
},
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"@types"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"<node_internals>/**"
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"swc": true
|
|
}
|
|
} |