25 lines
448 B
JSON
25 lines
448 B
JSON
|
{
|
||
|
"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": [
|
||
|
"index.ts",
|
||
|
"src/**/*",
|
||
|
"scripts/**/*",
|
||
|
]
|
||
|
}
|