core
dev-test
src
.editorconfig
.eslintignore
.eslintrc.js
.gitignore
.prettierignore
.prettierrc
babel.config.js
package.json
tsconfig.json
webpack.config.js
yarn.lock
website
.gitattributes
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
static-cms-icon.png
static-cms-logo.png
29 lines
706 B
JSON
29 lines
706 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"emitDeclarationOnly": true,
|
|
"jsx": "react",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"preserveSymlinks": true,
|
|
"noEmit": false,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"baseUrl": "./",
|
|
"lib": ["DOM", "es6", "ES2015"],
|
|
"paths": {
|
|
"@staticcms/core": ["./src"]
|
|
},
|
|
"types": ["@emotion/react/types/css-prop", "@types/jest"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|