1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/packages/worker/tsconfig.json

25 lines
441 B
JSON
Raw Normal View History

2022-01-20 11:44:17 +13:00
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
2022-05-04 09:58:19 +12:00
"lib": ["es2020"],
2022-01-20 11:44:17 +13:00
"allowJs": true,
"outDir": "dist",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
2022-05-04 09:58:19 +12:00
"incremental": true,
"types": [ "node", "jest"],
2022-01-20 11:44:17 +13:00
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
"**/*.json",
"**/*.spec.ts",
"**/*.spec.js"
]
}