Created
September 22, 2020 12:50
-
-
Save ofcRS/75802e331aa66a639aa72124b49ae43e to your computer and use it in GitHub Desktop.
tsconfig
te
This file contains hidden or 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": { | |
| "target": "ESNext", | |
| "baseUrl": "./src", | |
| "module": "esnext", | |
| "lib": ["dom"], | |
| "esModuleInterop": true, | |
| "allowSyntheticDefaultImports": true, | |
| "noImplicitAny": true, | |
| "jsx": "react", | |
| "moduleResolution": "node", | |
| "outDir": "build", | |
| "noEmit": true, | |
| "strict": true, | |
| "strictPropertyInitialization": false, | |
| "skipLibCheck": true, | |
| "experimentalDecorators": true, | |
| "resolveJsonModule": true | |
| }, | |
| "include": ["src/**/*.ts*"], | |
| "exclude": ["node_modules", "src/shared/**/*.ts*"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment