27 lines
466 B
JSON
27 lines
466 B
JSON
{
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./tests/**/*.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"./*.ts",
|
|
"__test__"
|
|
]
|
|
}
|