20 lines
388 B
JSON
20 lines
388 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"rootDir": ".",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"paths": {
|
|
"#root/*": ["./src/*"]
|
|
},
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"outDir": "build",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"preserveWatchOutput": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|