2022-03-05 09:41:26 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2022-03-29 18:07:38 +08:00
|
|
|
"module": "es2015",
|
2022-03-29 10:51:24 +08:00
|
|
|
"declaration": true,
|
2022-03-05 09:41:26 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-03-29 10:51:24 +08:00
|
|
|
"removeComments": true,
|
2022-03-29 18:07:38 +08:00
|
|
|
"moduleResolution": "node",
|
2022-03-29 10:51:24 +08:00
|
|
|
"noLib": false,
|
2022-03-05 09:41:26 +08:00
|
|
|
"jsx": "react",
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2022-03-29 10:51:24 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"lib": ["es5", "dom"],
|
2022-03-29 18:07:38 +08:00
|
|
|
"baseUrl": "./",
|
2022-03-29 10:51:24 +08:00
|
|
|
"paths": {
|
|
|
|
"@fortune-sheet/core": ["packages/core/src"],
|
|
|
|
"@fortune-sheet/react": ["packages/react/src"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["packages/*/src", "stories/"],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2022-03-29 18:07:38 +08:00
|
|
|
"packages/*/lib",
|
|
|
|
"packages/*/dist",
|
2022-03-29 10:51:24 +08:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.test.ts"
|
|
|
|
]
|
2022-03-05 09:41:26 +08:00
|
|
|
}
|