Last active
April 5, 2022 15:13
-
-
Save elzup/03081f3eb1a112d330b1bf32704fb12e to your computer and use it in GitHub Desktop.
web tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"allowJs": true, | |
"skipLibCheck": true, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, | |
"forceConsistentCasingInFileNames": true, | |
"moduleResolution": "node", | |
"resolveJsonModule": true, | |
"isolatedModules": true, | |
"noEmit": true, | |
"noImplicitAny": false, | |
"jsx": "preserve", | |
"target": "es5", | |
"lib": ["es7", "dom"], | |
"module": "commonjs", | |
"outDir": "out", | |
"sourceMap": true | |
}, | |
"include": ["scripts/**/*"], | |
"exclude": ["node_modules", "gas", "functions/**/*"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compilerOptions": { | |
"allowJs": true, | |
"skipLibCheck": true, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, | |
"forceConsistentCasingInFileNames": true, | |
"moduleResolution": "node", | |
"resolveJsonModule": true, | |
"isolatedModules": true, | |
"noEmit": true, | |
"noImplicitAny": false, | |
"jsx": "preserve", | |
"target": "es5", | |
"lib": ["es7", "dom"], | |
"module": "commonjs", | |
"outDir": "out", | |
"sourceMap": true | |
}, | |
"include": ["scripts/**/*"], | |
"exclude": ["node_modules", "gas", "functions/**/*"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment