0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 17:24:15 +01:00
posthog/plugin-transpiler/tsconfig.json
2023-11-07 21:56:59 +00:00

21 lines
1.0 KiB
JSON

{
"compilerOptions": {
"target": "ES2020", // Target a recent version of ECMAScript.
"module": "CommonJS", // Use CommonJS module system for Node.js.
"outDir": "./dist", // Output directory for the compiled JavaScript files.
"strict": true, // Enable all strict type-checking options.
"esModuleInterop": true, // Allows default imports from modules with no default export.
"skipLibCheck": true, // Skip type checking of declaration files.
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file.
"resolveJsonModule": true, // Allow importing .json files as modules.
"moduleResolution": "node" // Use Node.js-style module resolution.
},
"include": [
"src/**/*.ts", // Include all TypeScript files in the 'src' directory and its subdirectories.
"src/**/*.tsx" // Include all TSX files, if you have any.
],
"exclude": [
"node_modules" // Exclude node_modules from the compilation.
]
}