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.
 

15 lines
578 B

{
"compilerOptions": {
"target": "ESNext", // Handled by Babel
"module": "CommonJS", // Node.js module system
"strict": true, // Enable strict type-checking
"esModuleInterop": true, // Allow default imports from CJS modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true,
"outDir": "./dist", // Output directory
"rootDir": "./src", // Source directory
"noEmit": true // No need to emit files, Babel does that
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}