24 lines
599 B
JSON
24 lines
599 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"target": "ES2022",
|
|
"lib": ["ESNext", "DOM"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"types": ["node", "bun"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@peezy.tech/flow-runtime": ["../flow-runtime/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
|
}
|