mirror of
https://github.com/ruilisi/fortune-sheet.git
synced 2025-01-05 10:27:04 +08:00
31 lines
695 B
JSON
31 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"removeComments": true,
|
|
"moduleResolution": "node",
|
|
"noLib": false,
|
|
"jsx": "react",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["es5", "dom"],
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@fortune-sheet/core": ["packages/core/src"],
|
|
"@fortune-sheet/react": ["packages/react/src"]
|
|
}
|
|
},
|
|
"include": ["packages/*/src", "stories/"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"packages/*/lib",
|
|
"packages/*/dist",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|