Skip to content

Instantly share code, notes, and snippets.

@jordpo
Last active March 26, 2020 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jordpo/b916c5f0ed666fefc7119b5ff699bd9c to your computer and use it in GitHub Desktop.
Save jordpo/b916c5f0ed666fefc7119b5ff699bd9c to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "es2017",
"allowJs": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noEmitOnError": true,
"noEmit": true,
"inlineSourceMap": true,
"inlineSources": true,
"baseUrl": ".",
"module": "es6",
"skipLibCheck": true,
"paths": {
"my-app/*": [
"app/*",
"node_modules/one-addon/app/*",
"node_modules/another-addon/app/*",
],
"my-app/tests/*": [
"tests/*",
],
"one-addon/*": [
"node_modules/one-addon/addon/*"
],
"one-addon/test-support/*": [
"node_modules/one-addon/addon-test-support/*"
],
"another-addon/*": [
"node_modules/another-addon/addon/*"
],
"another-addon/test-support/*": [
"node_modules/another-addon/addon-test-support/*"
],
"my-app/mirage/*": [
"mirage/*"
],
"*": [
"types/*"
],
},
"experimentalDecorators": true
},
"include": [
"app",
"tests",
"types",
"mirage"
],
"exclude": [
"node_modules",
"dist",
"tmp",
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment