Files
formbricks/packages/tsconfig/js-library.json
T
Anshuman Pandey 53aef9ce0b fix: js package resolution (#2737)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2024-06-06 09:26:57 +00:00

18 lines
432 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 16",
"extends": "./base.json",
"compilerOptions": {
"outDir": "./dist",
"declaration": true,
"moduleResolution": "node",
"lib": ["es2022", "dom", "dom.iterable"],
"module": "ESNext",
"target": "ES2022",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}