mirror of
https://github.com/colanode/colanode.git
synced 2025-12-29 00:25:03 +01:00
22 lines
446 B
JSON
22 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "build", "dist"]
|
|
}
|