1
0
Fork 0
mirror of synced 2024-05-17 19:04:06 +12:00
budibase/packages/server/tsconfig.build.json

25 lines
459 B
JSON
Raw Normal View History

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