generated from UTDallasEPICS/next-js-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
18 lines (18 loc) · 1.39 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"compilerOptions": {
/* Language and Environment */
"target": "ESNext", /* Set the JavaScript language version to the latest */
"module": "ESNext", /* Use ES Modules for modern compatibility */
"strict": true, /* Enable strict type-checking options */
"esModuleInterop": true, /* Enable interop between CommonJS and ES Modules */
"moduleResolution": "node", /* Use Node.js-style module resolution */
"resolveJsonModule": true, /* Allow importing .json files */
"forceConsistentCasingInFileNames": true, /* Ensure consistent casing in imports */
"skipLibCheck": true, /* Skip type checking for declaration files */
"outDir": "./dist", /* Output directory for compiled JavaScript */
"allowSyntheticDefaultImports": true, /* Allow default imports from CommonJS modules */
"isolatedModules": true /* Ensure safe transpilation of each file independently */
},
"include": ["./*.ts"], /* Include all TypeScript files in the project root */
"exclude": ["node_modules", "dist"] /* Exclude node_modules and the output directory */
}