fortune-sheet/tsconfig.json

31 lines
695 B
JSON
Raw Normal View History

2022-03-05 09:41:26 +08:00
{
"compilerOptions": {
"target": "es5",
2022-03-29 18:07:38 +08:00
"module": "es2015",
"declaration": true,
2022-03-05 09:41:26 +08:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"removeComments": true,
2022-03-29 18:07:38 +08:00
"moduleResolution": "node",
"noLib": false,
2022-03-05 09:41:26 +08:00
"jsx": "react",
"strict": true,
"strictNullChecks": true,
"skipLibCheck": true,
"lib": ["es5", "dom"],
2022-03-29 18:07:38 +08:00
"baseUrl": "./",
"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",
"**/*.spec.ts",
"**/*.test.ts"
]
2022-03-05 09:41:26 +08:00
}