2023-09-08 19:09:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"module": "NodeNext",
|
|
|
|
"target": "ES2021",
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "build",
|
|
|
|
"rootDir": ".",
|
|
|
|
"paths": {
|
|
|
|
"#root/*": [
|
|
|
|
"./src/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
2023-09-10 18:27:48 +00:00
|
|
|
"index.ts",
|
2023-09-08 19:09:35 +00:00
|
|
|
]
|
|
|
|
}
|