1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00
budibase/packages/types/tsconfig.json

19 lines
336 B
JSON
Raw Normal View History

2022-05-04 04:13:13 +12:00
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["es2020"],
"outDir": "dist",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"incremental": true,
"types": [ "node"],
2022-05-26 08:32:08 +12:00
"composite": true
2022-05-04 04:13:13 +12:00
},
"include": [
"**/*.ts",
]
}