mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
# Conflicts: # .vscode/launch.json # CONTRIBUTING.old.md # code/lib/cli/tsconfig.json # scripts/tsconfig.json
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
/* tsconfig.json can have comments */
|
|
// tsconfig.json can have comments
|
|
"lerna": {
|
|
"disabled": true
|
|
},
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./",
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"lib": ["es2020", "dom"],
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"outDir": "./dist/out-tsc",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"target": "es2017",
|
|
"typeRoots": ["../../node_modules/@types", "node_modules/@types"]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": true
|
|
}
|
|
}
|