generated from wrappid/wrappid-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
22 lines (22 loc) · 995 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"jsx": "react", // Use classic React JSX transform (React 16-style)
"target": "es2016", // or "es6" depending on your needs
"lib": ["dom", "esnext"],
"allowJs": true,
"checkJs": false,
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"removeComments": true,
"skipLibCheck": true,
"outDir": "./dist",
"allowSyntheticDefaultImports":true,
},
"include": ["app/**/*.tsx","app/**/*.ts","app/**/*.js", "app/**/*.jsx"], // Include all .tsx files for conversion
"exclude": ["node_modules"]
}