Skip to content

Commit

Permalink
🔧 update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineKM committed Jun 17, 2021
1 parent 32d7ddf commit f06db6c
Showing 1 changed file with 24 additions and 26 deletions.
50 changes: 24 additions & 26 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,37 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"lib": ["dom", "es2017"],
"moduleResolution": "node",
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"typeRoots": ["node_modules/@types"],
"paths": {
"@static/*": ["./public/static/*"],
"@components/*": ["./src/components/*"],
"@data/*": ["./src/data/*"],
"@styles/*": ["./src/styles/*"],
"@screens/*": ["./src/screens/*"],
"@services/*": ["./src/services/*"],
"@stores/*": ["./src/stores/*"],
"@hooks/*": ["./src/hooks/*"]
}
"@hooks/*": ["./src/hooks/*"],
"@constants/*": ["./src/constants/*"],
"@services/*": ["./src/services/*"]
},
"types": ["node"]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}

0 comments on commit f06db6c

Please sign in to comment.