18 lines
388 B
JSON
18 lines
388 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"~": ["./app"],
|
|
"~/*": ["./app/*"],
|
|
"@": ["./app"],
|
|
"@/*": ["./app/*"],
|
|
"#shared": ["./shared"],
|
|
"#shared/*": ["./shared/*"],
|
|
}
|
|
},
|
|
"include": ["./tests/**/*"]
|
|
}
|