mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "esnext",
|
|
"target": "ESNext",
|
|
"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,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"#components/*": ["./src/Components/*"],
|
|
"#utils/*": ["./src/Utils/*"],
|
|
"#src/*": ["./src/*"],
|
|
"#types/*": ["./types/*"],
|
|
"#root/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["src", "vite.config.ts", "setupTest.ts"],
|
|
"exclude": ["node_modules", "dist", "example", "rollup.config.mjss"],
|
|
"typeRoots": [
|
|
"./types",
|
|
"./node_modules/@types/"
|
|
]
|
|
}
|