mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
So we do not get the warning: ESM You have emitDecoratorMetadata enabled but @swc/core was not installed, skipping swc plugin ...anymore
38 lines
784 B
JSON
38 lines
784 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"noImplicitAny": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "Node",
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"skipLibCheck": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"strictBindCallApply": true,
|
|
"types": ["jest"],
|
|
"lib": ["dom", "esnext"]
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"**/dist",
|
|
"node_modules",
|
|
"**/node_modules",
|
|
"**/*.spec.ts",
|
|
"**/__tests__",
|
|
"**/*.test.ts",
|
|
"**/setup-jest.ts"
|
|
],
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"files": true,
|
|
"compilerOptions": {
|
|
"types": ["node"]
|
|
}
|
|
}
|
|
}
|