2023-03-09 09:50:26 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-08-01 18:22:44 +02:00
|
|
|
"target": "es6",
|
2023-08-18 15:33:21 +02:00
|
|
|
"module": "commonjs",
|
2023-08-01 18:22:44 +02:00
|
|
|
"lib": ["es2020"],
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
|
|
|
"types": ["node"],
|
2023-08-02 00:21:59 +02:00
|
|
|
"outDir": "dist",
|
2023-08-08 17:45:02 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
2023-08-08 18:36:36 +02:00
|
|
|
"@budibase/types": ["../types/src"]
|
2023-10-10 16:05:41 +02:00
|
|
|
},
|
|
|
|
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
|
2023-08-01 18:22:44 +02:00
|
|
|
},
|
|
|
|
"include": ["**/*.js", "**/*.ts"],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.spec.js",
|
2023-11-21 17:08:20 +01:00
|
|
|
"__mocks__",
|
|
|
|
"src/tests"
|
2023-08-01 18:22:44 +02:00
|
|
|
]
|
2023-03-09 09:50:26 +01:00
|
|
|
}
|