22 lines
444 B
JSON
22 lines
444 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./packages/functions/node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"packages/functions/src"
|
|
]
|
|
}
|