Created
April 24, 2020 04:47
-
-
Save restuu/b34b400f3b1d00a926a275bd8b7248cc to your computer and use it in GitHub Desktop.
tsconfig
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": { | |
"lib": ["es6", "es2016", "es2016.array.include", "es2017", "dom"], | |
"module": "commonjs", | |
"noImplicitReturns": true, | |
"sourceMap": true, | |
"target": "es2017", | |
"esModuleInterop": true, | |
"strictNullChecks": true, | |
"isolatedModules": true, | |
"strictPropertyInitialization": true, | |
"skipLibCheck": true, | |
"outDir": "lib" | |
}, | |
"compileOnSave": true, | |
"include": ["src/"], | |
"exclude": ["node_modules", "src/**/*mocks*/**/*", "src/**/*tests*/**/*", "src/**/*.test.*"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment