UNPKG

tsconfig.json

Version:

Quickly create an opinionated tsconfig.json

24 lines (23 loc) 618 B
{ "compilerOptions": { "experimentalDecorators": true, "target": "es2017", "module": "commonjs", "jsx": "react-native", "lib": ["es6", "esnext.asynciterable", "es2017"], "strict": true, "esModuleInterop": true, "rootDir": "src", "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, "noImplicitThis": true, "noImplicitAny": true, "strictNullChecks": true, "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": true, "skipLibCheck": true, "baseUrl": ".", "allowSyntheticDefaultImports": true, "removeComments": true } }