utopia-ui/tsconfig.json
Ulf Gebhardt 9b98a18597
removed types from include
types should be included by typeRoots and hence not result in errors of
eslint (has to be monitored)
2024-11-24 04:15:53 +01:00

33 lines
940 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom","es2015", "es2016", "es2017", "es2020"],
"sourceMap": true,
"allowJs": false,
"jsx": "react-jsx",
"declaration": true,
"declarationDir": "./types",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"paths": {
"#components/*": ["./src/Components/*"],
"#utils/*": ["./src/Utils/*"],
"#src/*": ["./src/*"],
"#types/*": ["./types/*"],
"#root/*": ["./*"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist", "example", "rollup.config.mjss"],
"typeRoots": [
"./types",
"./node_modules/@types/"
]
}