2024-12-21 21:16:18 -06:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-12-31 11:35:09 -06:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2024-12-21 21:16:18 -06:00
|
|
|
"esModuleInterop": true,
|
2024-12-31 11:35:09 -06:00
|
|
|
"moduleResolution": "bundler",
|
2024-12-29 14:35:30 -06:00
|
|
|
"sourceMap": false,
|
2024-12-31 11:35:09 -06:00
|
|
|
"isolatedModules": true,
|
|
|
|
/* "allowImportingTsExtensions": true, */
|
|
|
|
/* "noEmit": true, */
|
2024-12-21 21:16:18 -06:00
|
|
|
"baseUrl": ".",
|
|
|
|
"outDir": "dist",
|
2024-12-31 11:35:09 -06:00
|
|
|
"lib": ["ESNext"],
|
|
|
|
"types": ["node", "jest"],
|
2024-12-21 21:16:18 -06:00
|
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
},
|
2024-12-29 14:35:30 -06:00
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
|
|
|
"util/**/*",
|
|
|
|
"examples/**/*",
|
|
|
|
"scratch/**/*",
|
|
|
|
"__tests__/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
2024-12-31 11:35:09 -06:00
|
|
|
],
|
|
|
|
"tsc-alias": {
|
|
|
|
"resolveFullPaths": true
|
|
|
|
}
|
2024-12-21 21:16:18 -06:00
|
|
|
}
|