Skip to content

Instantly share code, notes, and snippets.

@sirtimbly
Created December 15, 2018 03:45
Show Gist options
  • Save sirtimbly/5cff05e9fe826ea5dc0d687e1a288f48 to your computer and use it in GitHub Desktop.
Save sirtimbly/5cff05e9fe826ea5dc0d687e1a288f48 to your computer and use it in GitHub Desktop.
tsconfig for a design system with legacy code
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictPropertyInitialization": false,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"jquery",
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"es5",
"dom",
"dom.iterable",
"es2015.promise"
]
},
"include": [
"src/**/*.ts",
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment