Files
spacedrive/packages/interface/tsconfig.json
2022-04-25 21:49:31 -07:00

28 lines
695 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"noEmit": true,
"jsx": "react",
"outDir": "dist",
"declaration": true,
"declarationMap": true,
"baseUrl": "./",
"paths": {
"@sd/ui": ["../ui/src/index.ts"],
"@sd/client": ["../client/src/index.ts"],
"@sd/core": ["../../core/index.ts"],
}
},
"include": ["src", "scripts"]
}