1
0
Fork 0
mirror of synced 2024-06-26 18:10:51 +12:00
budibase/packages/worker/tsconfig.build.json

26 lines
476 B
JSON
Raw Normal View History

2022-06-09 23:33:10 +12:00
{
"compilerOptions": {
"target": "es6",
"skipLibCheck": true,
2022-06-09 23:33:10 +12:00
"module": "commonjs",
"lib": ["es2020"],
"allowJs": true,
"outDir": "dist",
2022-06-09 23:33:10 +12:00
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"incremental": true,
"types": [ "node", "jest"],
2022-06-09 23:33:10 +12:00
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"src/tests",
"**/*.spec.js",
"**/*.spec.ts"
2022-06-09 23:33:10 +12:00
]
}