mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": ["ES2020"],
|
|
"importHelpers": false,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"node_modules/@types",
|
|
"../node_modules/@types"
|
|
],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./package",
|
|
"rootDir": "./package",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"preserveConstEnums": true,
|
|
"isolatedModules": true,
|
|
"removeComments": false
|
|
},
|
|
"include": ["package/**/*.ts"],
|
|
"exclude": ["node_modules", "package/**/*.test.ts", "package/**/*.spec.ts"]
|
|
}
|