storybook/tsconfig.json
Norbert de Langen 3548fd108c
Merge branch 'future/angular12' into future/modern-frameworks
# Conflicts:
#	examples/cra-kitchen-sink/package.json
#	examples/cra-react15/package.json
#	examples/cra-ts-essentials/package.json
#	examples/cra-ts-kitchen-sink/package.json
#	frameworks/angular/tsconfig.json
#	lib/core-common/package.json
#	presets/html-webpack/package.json
#	presets/preact-webpack/package.json
#	presets/react-webpack/package.json
#	presets/svelte-webpack/package.json
#	presets/vue3-webpack/package.json
#	yarn.lock
2022-05-13 14:08:53 +02:00

44 lines
821 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"moduleResolution": "Node",
"target": "ES2020",
"module": "CommonJS",
"skipLibCheck": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": 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"
]
}
}
}