Public commit
This commit is contained in:
36
tsconfig.json
Normal file
36
tsconfig.json
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"esModuleInterop": true,
|
||||
"experimentalDecorators": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "react",
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"resolveJsonModule": true,
|
||||
"noImplicitOverride": true,
|
||||
"strict": true,
|
||||
"stripInternal": true,
|
||||
"target": "esnext",
|
||||
"useUnknownInCatchVariables": false,
|
||||
"paths": {
|
||||
"~/*": ["./src/*"],
|
||||
"#src/*": ["./src/*"],
|
||||
"#vendor/*": ["./src/vendor/*"]
|
||||
},
|
||||
"plugins": [
|
||||
{
|
||||
"name": "typescript-plugin-css-modules"
|
||||
},
|
||||
{
|
||||
"name": "@aet/gql-tools",
|
||||
"schema": "src/generated/schema.gql",
|
||||
"tag": "gql"
|
||||
}
|
||||
]
|
||||
},
|
||||
"include": ["src", "eslint-local-rules", "scripts", ".eslintrc.js", "babel.config.js"],
|
||||
"exclude": ["drafts"]
|
||||
}
|
Reference in New Issue
Block a user