Files
.github
.husky
.vscode
packages
app
core
demo
docs
content
design
public
src
.editorconfig
.eslintignore
.eslintrc.js
.eslintrc.json
.gitignore
.prettierignore
.prettierrc
next.config.js
package.json
tsconfig.json
yarn.lock
.eslintignore
.gitattributes
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
lerna.json
nx.json
package.json
renovate.json
static-cms-icon.png
static-cms-logo.png
yarn.lock
static-cms/packages/docs/tsconfig.json
2022-12-15 13:44:49 -05:00

21 lines
509 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}