You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
968 B
39 lines
968 B
{
|
|
"compilerOptions": {
|
|
"outDir": "./built",
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"emitDeclarationOnly": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"react",
|
|
"mocha",
|
|
"node"
|
|
],
|
|
"paths": {
|
|
"react": ["node_modules/@types/react"],
|
|
"styled-components": ["node_modules/@types/styled-components"]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./vendor-types/**/*",
|
|
"./src/**/*",
|
|
"./spec/**/*"
|
|
],
|
|
"exclude": [
|
|
"./example-app/**/*",
|
|
"./node-modules",
|
|
"./src/frontend/assets/**/*",
|
|
"./src/frontend/components/**/*stories.tsx",
|
|
]
|
|
} |